@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
.large-header {
  width: 100%;
  height: 100px;
  background-color: white;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.2509803922));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.large-header .container {
  width: 100%;
  height: 100%;
}
.large-header .container .row {
  height: 100%;
  margin: 0 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.large-header .container .row .left {
  display: flex;
  align-items: center;
  height: 100%;
}
.large-header .container .row .left .ugurLogo {
  width: 140px;
  height: 70px;
  border: 0.1px solid white;
  margin-right: 50px;
}
.large-header .container .row .left .ugurLogo img {
  width: 100%;
  height: 100%;
}
.large-header .container .row .left ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
}
.large-header .container .row .left ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  font-size: 13px;
  font-weight: 500;
}
.large-header .container .row .right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.large-header .container .row .right .icons {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 38px;
}
.large-header .container .row .right .icons li a {
  height: 100%;
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.large-header .container .row .right .icons li a i {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.large-header .container .row .right .icons li a span {
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  font-family: "montserrat";
}
.large-header .container .row .right .rolexLogo {
  width: 150px;
  height: 70px;
  margin-left: 50px;
}
.large-header .container .row .right .rolexLogo img {
  width: 100%;
  height: 100%;
}

.login-inner {
  /* Style for the overlay */
  /* Style for the box container */
}
.login-inner .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}
.login-inner .box-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  /* Style for the box */
}
.login-inner .box-container .box {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  overflow: auto;
  transition: width 0.3s ease-in-out;
  /* Style for the box when it is open */
  /* Style for the X button */
}
.login-inner .box-container .box.open {
  width: 420px;
}
.login-inner .box-container .box .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
.login-inner .box-container .box .login-adder {
  width: 100%;
}
.login-inner .box-container .box .login-adder .box-header {
  width: 100%;
  height: 82px;
  display: flex;
  justify-content: center;
  background-color: #E4E4E4;
}
.login-inner .box-container .box .login-adder .box-header .box-header-container {
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-inner .box-container .box .login-adder .box-header .box-header-container span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.login-inner .box-container .box .login-adder .box-header .box-header-container .close-login-btn {
  font-size: 16px;
}
.login-inner .box-container .box .login-adder .box-header .box-header-container .close-login-btn:hover {
  cursor: pointer;
}
.login-inner .box-container .box .login-adder .box-content {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 31px;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container {
  width: 340px;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form {
  width: 100%;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_name {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_name input {
  padding: 0 17px;
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_name input::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_name input::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_password {
  width: 100%;
  height: 55px;
  margin-bottom: 17px;
  border: 1px solid #E4E4E4;
  position: relative;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_password input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 17px;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .user_password i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .check-remember {
  display: flex;
  align-items: center;
  float: left;
  margin-bottom: 26px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .check-remember input {
  width: 17px;
  height: 17px;
  border: 1px solid #bb0202;
  margin-right: 10px;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .lost-password {
  float: right;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .lost-password a {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  text-decoration-line: underline;
  /* Color/Head */
  color: #4F4F4D;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .sumit_btn {
  width: 100%;
  height: 60px;
  background: #4F4F4D;
  border: none;
  margin-bottom: 24px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color / White */
  color: #FFFFFF;
  text-transform: uppercase;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .create-account-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .create-account-btn span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .login-adder .box-content .box-content-container form .create-account-btn a {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account {
  width: 100%;
  height: 300px;
  display: none;
}
.login-inner .box-container .box .create-account .create-account-header {
  width: 100%;
  height: 82px;
  display: flex;
  justify-content: center;
  background-color: #E4E4E4;
}
.login-inner .box-container .box .create-account .create-account-header .create-account-header-container {
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-inner .box-container .box .create-account .create-account-header .create-account-header-container span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.login-inner .box-container .box .create-account .create-account-header .create-account-header-container .close-login-btn {
  font-size: 16px;
}
.login-inner .box-container .box .create-account .create-account-header .create-account-header-container .close-login-btn:hover {
  cursor: pointer;
}
.login-inner .box-container .box .create-account .create-account-content {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 31px;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container {
  width: 340px;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form {
  width: 100%;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_fname {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_fname input {
  padding: 0 17px;
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_fname input::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_fname input::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_lname {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_lname input {
  padding: 0 17px;
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_lname input::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_lname input::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_email {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_email input {
  padding: 0 17px;
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_email input::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_email input::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_password {
  width: 100%;
  height: 55px;
  margin-bottom: 17px;
  border: 1px solid #E4E4E4;
  position: relative;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_password input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 17px;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_password i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_repeatPassword {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
  position: relative;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_repeatPassword input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 17px;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_repeatPassword i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user_personal_data_law {
  margin-bottom: 15px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .user-members-terms {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.login-inner .box-container .box .create-account .create-account-content .create-account-content-container form .create_account_btn {
  width: 100%;
  height: 60px;
  background: #4F4F4D;
  border: none;
  margin-top: 25px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color / White */
  color: #FFFFFF;
  text-transform: uppercase;
}

.header-search-box-container {
  width: 100%;
  height: 461px;
  padding: 62px 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: white;
  z-index: 9999999999999;
}
.header-search-box-container .header-search-box-close {
  width: 40px;
  height: 40px;
  margin: auto;
  background-color: #c1c1c1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25%;
}
.header-search-box-container .header-search-box-content {
  width: 1461px;
  height: 100%;
  margin: auto;
}
.header-search-box-container .header-search-box-content span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.header-search-box-container .header-search-box-content .header-search-box {
  width: 100%;
  height: 10%;
  margin-top: 29px;
  display: flex;
  align-items: center;
  background-color: white;
  position: relative;
}
.header-search-box-container .header-search-box-content .header-search-box::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #767676;
}
.header-search-box-container .header-search-box-content .header-search-box input {
  width: 98%;
  height: 100%;
  outline: none;
  border: none;
  padding: 10px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
  opacity: 1;
  text-transform: uppercase;
}
.header-search-box-container .header-search-box-content .header-search-box i {
  width: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search-box-container .header-search-box-content .header-search-box .header-result-box {
  position: absolute;
  top: 100%;
  margin-top: 2px;
  padding: 20px 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 1;
  display: none;
  background-color: white;
  max-height: 200px;
  overflow-y: auto;
  z-index: 9;
}
.header-search-box-container .header-search-box-content .header-search-box .header-result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: auto;
}
.header-search-box-container .header-search-box-content .header-search-box .header-result-box ul li {
  padding: 5px 10px;
  cursor: pointer;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.header-search-box-container .header-search-box-content .header-search-box .header-result-box ul li:hover {
  background-color: #f0f0f0;
}

.card {
  width: 330px;
  height: 500px;
  transition: 0.4s ease;
  position: relative;
}
.card .new-badge {
  position: absolute;
  width: 50px;
  height: 30.86px;
  right: 10px;
  top: 10px;
  z-index: 9;
  background-color: red;
}
.card .new-badge .new-badge-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .new-badge .new-badge-container span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  /* Color / White */
  color: #FFFFFF;
}
.card .card-img-container {
  width: 100%;
  height: 413px;
  background-color: var(--card-container-bg);
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}
.card .card-img-container .img-box {
  width: 100%;
  height: 362px;
  background-color: #E7E7E7;
  transition: 0.4s ease;
}
.card .card-img-container .img-box .card-img {
  width: 100%;
  height: 95%;
  transform: translateY(2px);
  transition: 0.4s ease;
}
.card .card-img-container .img-box .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.card .card-info {
  width: 100%;
  height: 87px;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  transition: 0.4s ease;
}
.card .card-info .card-info-container {
  width: 93%;
  height: 80%;
  transition: 0.4s ease;
}
.card .card-info .card-info-container .product-name {
  transition: 0.4s ease;
}
.card .card-info .card-info-container .product-name span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  /* Color/Head */
  color: #4F4F4D;
}
.card .card-info .card-info-container .product-category {
  transition: 0.4s ease;
}
.card .card-info .card-info-container .product-category span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  /* or 185% */
  /* Color / Second */
  color: #767676;
}
.card .card-info .card-info-container .product-price {
  transition: 0.4s ease;
  display: flex;
}
.card .card-info .card-info-container .product-price .discount-price {
  margin-right: 7px;
  text-decoration: line-through;
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}
.card .card-info .card-info-container .product-price .discount-price span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-decoration: line-through;
  /* Color / Second */
  color: #767676;
}
.card .card-info .card-info-container .product-price .normal-price {
  transition: 0.4s ease;
}
.card .card-info .card-info-container .product-price .normal-price span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height */
  /* Color/Head */
  color: #4F4F4D;
}
.card .add-basket-btn {
  display: none;
}
.card:hover {
  background-color: white;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  transition: 0.4s ease;
  cursor: pointer;
}
.card:hover .card-img-container {
  width: 100%;
  height: 360px;
  background-color: var(--card-container-bg);
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}
.card:hover .card-img-container .img-box {
  width: 100%;
  height: 100%;
  background-color: #E7E7E7;
  transition: 0.4s ease;
}
.card:hover .card-img-container .img-box .card-img {
  width: 100%;
  height: 100%;
  transform: translateY(0px);
  transition: 0.4s ease;
}
.card:hover .card-img-container .img-box .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.card:hover .card-info {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  transition: 0.4s ease;
}
.card:hover .card-info .card-info-container {
  width: 292px;
  height: 100%;
  transform: translateY(16px);
  transition: 0.4s ease;
}
.card:hover .card-info .card-info-container .product-name {
  transition: 0.4s ease;
}
.card:hover .card-info .card-info-container .product-name span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  /* Color/Head */
  color: #4F4F4D;
}
.card:hover .card-info .card-info-container .product-category {
  transition: 0.4s ease;
}
.card:hover .card-info .card-info-container .product-category span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  /* or 185% */
  /* Color / Second */
  color: #767676;
}
.card:hover .card-info .card-info-container .product-price {
  transition: 0.4s ease;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column-reverse;
}
.card:hover .card-info .card-info-container .product-price .discount-price {
  transition: 0.4s ease;
  margin-right: 7px;
  text-decoration: line-through;
  display: flex;
  align-items: center;
}
.card:hover .card-info .card-info-container .product-price .discount-price span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-decoration: line-through;
  /* Color / Second */
  color: #767676;
}
.card:hover .card-info .card-info-container .product-price .normal-price {
  transition: 0.4s ease;
}
.card:hover .card-info .card-info-container .product-price .normal-price span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height */
  /* Color/Head */
  color: #4F4F4D;
}
.card:hover .card-info .card-info-container .add-basket-btn {
  transition: 0.4s ease;
  width: 100%;
  height: 40px;
  display: block;
  margin-top: 18px;
}
.card:hover .card-info .card-info-container .add-basket-btn button {
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  background-color: var(--card-hover-basket-btn-bg);
  color: white;
  border: none;
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  color: #FFFFFF;
}

footer {
  width: 100%;
  height: 100%;
  background-color: var(--footer-bg);
}
footer .footer-container {
  width: 1410px;
  height: 100%;
  min-height: 704px;
  margin: auto;
}
footer .footer-container .footer-row {
  width: 100%;
  height: 100%;
}

.footer-icons {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 37px;
}
.footer-icons::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* Color / White */
  background: #FFFFFF;
  opacity: 0.1;
}
.footer-icons .footer-icons-content {
  width: 100%;
  min-height: 51px;
  display: flex;
  justify-content: space-between;
}
.footer-icons .footer-icons-content .footer-icons-box {
  height: 100%;
  display: flex;
  align-items: center;
}
.footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left i {
  font-size: 45px;
  color: white;
}
.footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right {
  display: flex;
  flex-direction: column;
}
.footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-header {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  text-transform: uppercase;
  /* Color / White */
  color: #FFFFFF;
}
.footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-content {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  /* Color / White */
  color: #FFFFFF;
}

.footer-inner {
  width: 100%;
  height: 100%;
  padding-top: 65px;
  padding-bottom: 128px;
  position: relative;
}
.footer-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* Color / White */
  background: #FFFFFF;
  opacity: 0.1;
}
.footer-inner .footer-inner-container {
  width: 100%;
  min-height: 289px;
}
.footer-inner .footer-inner-container .footer-inner-row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left {
  height: 100%;
  margin-right: 79px;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo {
  width: 140px;
  height: 70px;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo img {
  width: 100%;
  height: 100%;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress {
  width: 282px;
  height: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress span {
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  /* or 185% */
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact span {
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  /* or 185% */
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social {
  height: 100%;
  display: flex;
  gap: 36px;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social .footer-social-icon-box {
  height: 100%;
  color: white;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center {
  width: 100%;
  height: 100%;
  margin-right: 105px;
  display: flex;
  justify-content: space-between;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-header span {
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  /* identical to box height, or 162% */
  text-transform: uppercase;
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul {
  list-style-type: none;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul li a {
  text-decoration: none;
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 40px;
  /* or 308% */
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-header span {
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  /* identical to box height, or 162% */
  text-transform: uppercase;
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul {
  list-style-type: none;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul li a {
  text-decoration: none;
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 40px;
  /* or 308% */
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-header span {
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  /* identical to box height, or 162% */
  text-transform: uppercase;
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul {
  list-style-type: none;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul li a {
  text-decoration: none;
  font-family: var(--font-Montserrat);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 40px;
  /* or 308% */
  /* Color / White */
  color: #FFFFFF;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-right {
  height: 100%;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email {
  display: none;
}
.footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments {
  display: none;
}

.footer-bottom {
  width: 100%;
  height: 100%;
  padding-top: 42px;
  padding-bottom: 31px;
}
.footer-bottom .footer-bottom-container {
  width: 100%;
  min-height: 13px;
}
.footer-bottom .footer-bottom-container .footer-bottom-row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left {
  width: 49px;
  height: 12px;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left img {
  width: 100%;
  height: 100%;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right {
  height: 100%;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 19px;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  /* Color / White */
  color: #FFFFFF;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover {
  cursor: pointer;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover .footer-right-language-chooser {
  display: block;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language a {
  text-decoration: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  /* Color / White */
  color: #FFFFFF;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language i {
  margin-left: 10px;
  font-size: 13px;
  color: white;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser {
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 9999;
  left: -10px;
  display: flex;
  text-align: center;
  flex-direction: column-reverse;
  justify-content: space-between;
  display: none;
  background-color: var(--card-hover-basket-btn-bg);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a {
  text-decoration: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 36px;
  /* Color / White */
  color: #FFFFFF;
}
.footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a:hover {
  color: goldenrod;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  /* Modal Content (image) */
}
.modal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  position: relative;
  /* The Close Button */
}
.modal .modal-content .close {
  position: absolute;
  top: 0px;
  right: 0px;
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.small-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: white;
}
.small-header .container {
  width: 95%;
  margin: auto;
  height: 100%;
}
.small-header .container .row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small-header .container .row .nav-icon {
  font-size: 20px;
}
.small-header .container .row .small-header-logo {
  width: 100px;
}
.small-header .container .row .small-header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.small-header .container .row .small-header-bag {
  font-size: 20px;
}

.open-nav {
  width: 100%;
  height: 100%;
  background-color: white;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 999999;
  display: none;
}
.open-nav .container {
  width: 95%;
  height: 100%;
  margin: auto;
  margin-top: 21px;
}
.open-nav .container .row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.open-nav .container .row .account-back {
  position: absolute;
  top: 0;
  left: 0;
}
.open-nav .container .row .open-nav-search-box {
  width: 100%;
  height: 40px;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E4;
  border-radius: 3px;
  position: relative;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container input {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  padding: 10px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
  opacity: 1;
  text-transform: uppercase;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container i {
  padding: 10px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container .open-nav-result-box {
  border: 1px solid #E4E4E4;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  top: 100%;
  margin-top: 0px;
  padding: 20px 0;
  left: 0;
  width: 100%;
  height: 350px;
  z-index: 1;
  display: none;
  background-color: white;
  max-height: 350px;
  overflow-y: auto;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container .open-nav-result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: auto;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container .open-nav-result-box ul li {
  padding: 5px 10px;
  cursor: pointer;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .open-nav-search-box .open-nav-search-box-container .open-nav-result-box ul li:hover {
  background-color: #f0f0f0;
}
.open-nav .container .row .open-nav-menu {
  width: 100%;
  height: 400px;
  margin-top: 17px;
  overflow-y: scroll;
  position: relative;
}
.open-nav .container .row .open-nav-menu i.reset {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  font-size: 16px;
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-menu .item {
  width: 100%;
}
.open-nav .container .row .open-nav-menu .item .item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.open-nav .container .row .open-nav-menu .item .item-header a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 45px;
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-menu .item ul {
  display: none;
}
.open-nav .container .row .open-nav-menu .item ul li a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 35px;
  /* or 250% */
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-menu .item ul.show {
  display: block;
}
.open-nav .container .row .login-adder {
  width: 100%;
  display: none;
}
.open-nav .container .row .login-adder .box-header {
  width: 100%;
  height: 52px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.open-nav .container .row .login-adder .box-header .box-header-container {
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.open-nav .container .row .login-adder .box-header .box-header-container span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .login-adder .box-header .box-header-container .close-login-btn {
  font-size: 16px;
}
.open-nav .container .row .login-adder .box-content {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.open-nav .container .row .login-adder .box-content .box-content-container {
  width: 340px;
}
.open-nav .container .row .login-adder .box-content .box-content-container form {
  width: 100%;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .user_name {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
  padding: 0 17px;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .user_name::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .user_name::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .user_password {
  width: 100%;
  height: 55px;
  margin-bottom: 17px;
  border: 1px solid #E4E4E4;
  padding: 0 17px;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .check-remember {
  display: flex;
  align-items: center;
  float: left;
  margin-bottom: 26px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .check-remember input {
  width: 17px;
  height: 17px;
  border: 1px solid #bb0202;
  margin-right: 10px;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .lost-password {
  float: right;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .lost-password a {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  text-decoration-line: underline;
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .sumit_btn {
  width: 100%;
  height: 60px;
  background: #4F4F4D;
  border: none;
  margin-bottom: 24px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color / White */
  color: #FFFFFF;
  text-transform: uppercase;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .create-account-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .create-account-btn span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .login-adder .box-content .box-content-container form .create-account-btn a {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .create-account {
  width: 100%;
  height: 300px;
  display: none;
}
.open-nav .container .row .create-account .create-account-header {
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.open-nav .container .row .create-account .create-account-header .create-account-header-container {
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.open-nav .container .row .create-account .create-account-header .create-account-header-container span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .create-account .create-account-header .create-account-header-container .close-login-btn {
  font-size: 16px;
}
.open-nav .container .row .create-account .create-account-content {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 11px;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container {
  width: 340px;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form {
  width: 100%;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_name {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
  padding: 0 17px;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_name::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_name::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_email {
  width: 100%;
  height: 55px;
  margin-bottom: 30px;
  border: 1px solid #E4E4E4;
  padding: 0 17px;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_email::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_email::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .user_password {
  width: 100%;
  height: 55px;
  margin-bottom: 17px;
  border: 1px solid #E4E4E4;
  padding: 0 17px;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  /* Color/Second */
  color: #767676;
}
.open-nav .container .row .create-account .create-account-content .create-account-content-container form .create_account_btn {
  width: 100%;
  height: 60px;
  background: #4F4F4D;
  border: none;
  margin-top: 25px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  /* identical to box height, or 171% */
  /* Color / White */
  color: #FFFFFF;
  text-transform: uppercase;
}
.open-nav .container .row .open-nav-bottom {
  width: 100%;
  height: 200px;
  position: fixed;
  bottom: 0;
  left: 0;
}
.open-nav .container .row .open-nav-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1px;
  background-color: #E4E4E4;
}
.open-nav .container .row .open-nav-bottom .container {
  width: 95%;
  height: 100%;
  margin: auto;
}
.open-nav .container .row .open-nav-bottom .container .account {
  width: 100%;
  margin-top: 29px;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
}
.open-nav .container .row .open-nav-bottom .container .account i {
  font-size: 14px;
  margin-right: 13px;
}
.open-nav .container .row .open-nav-bottom .container .account a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-language {
  width: 100%;
  display: flex;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-language span {
  width: 100px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #767676;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-language select {
  border: none;
  outline: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-language select option {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-currency {
  width: 100%;
  display: flex;
  margin-top: 16px;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-currency span {
  width: 100px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #767676;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-currency select {
  border: none;
  outline: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-currency select option {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-social {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 26px;
}
.open-nav .container .row .open-nav-bottom .container .open-nav-social ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  gap: 36px;
}

.header-slider {
  width: 100%;
  height: 970px;
  position: relative;
}
.header-slider .swiper {
  width: 100%;
  height: 930px;
  position: relative;
}
.header-slider .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.header-slider .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}
.header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
  font-size: 70px;
  line-height: 80px;
  color: white;
  text-align: center;
  font-family: "Montserrat";
}
.header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
  width: 208px;
  height: 50px;
  margin: auto;
  font-style: normal;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
}
.header-slider .swiper-pagination {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0;
}

.popular {
  width: 100%;
  margin-top: 65px;
}
.popular .popular-container {
  width: 1410px;
  margin: auto;
}
.popular .popular-container .popular-head {
  width: 100%;
  margin-bottom: 13px;
}
.popular .popular-container .popular-head .popular-head-title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.popular .popular-container .popular-head .popular-head-title span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.popular .popular-container .popular-head .popular-head-description {
  width: 100%;
  display: flex;
  justify-content: center;
}
.popular .popular-container .popular-head .popular-head-description span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  color: #808080;
}
.popular .popular-container .popular-slider {
  width: 100%;
}
.popular .popular-container .popular-slider .popularSlider {
  width: 100%;
  height: 520px;
}
.popular .popular-container .popular-slider .popularSlider .swiper {
  width: 100%;
  height: 100%;
}
.popular .popular-container .popular-slider .popularSlider .swiper .swiper-slide {
  width: 100%;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-product {
  width: 100%;
  margin-top: 65px;
}
.new-product .new-product-container {
  width: 1410px;
  margin: auto;
}
.new-product .new-product-container .new-product-head {
  width: 100%;
  margin-bottom: 13px;
}
.new-product .new-product-container .new-product-head .new-product-head-title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.new-product .new-product-container .new-product-head .new-product-head-title span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.new-product .new-product-container .new-product-head .new-product-head-description {
  width: 100%;
  display: flex;
  justify-content: center;
}
.new-product .new-product-container .new-product-head .new-product-head-description span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  color: #808080;
}
.new-product .new-product-container .new-product-slider {
  width: 100%;
}
.new-product .new-product-container .new-product-slider .newProductSlider {
  width: 100%;
  height: 520px;
}
.new-product .new-product-container .new-product-slider .newProductSlider .swiper {
  width: 100%;
  height: 100%;
}
.new-product .new-product-container .new-product-slider .newProductSlider .swiper .swiper-slide {
  width: 100%;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about {
  width: 100%;
  margin-top: 65px;
}
.about .about-container {
  width: 1410px;
  margin: auto;
  height: 600px;
  display: flex;
  justify-content: space-between;
}
.about .about-container .about-left {
  width: 810px;
  height: 100%;
}
.about .about-container .about-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-container .about-right {
  width: 500px;
  height: 100%;
}
.about .about-container .about-right .about-inner {
  width: 100%;
  height: 100%;
}
.about .about-container .about-right .about-inner .about-logo {
  width: 100%;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
}
.about .about-container .about-right .about-inner .about-logo img {
  width: 100%;
  height: 100%;
}
.about .about-container .about-right .about-inner .about-title {
  width: 100%;
  margin-bottom: 33px;
  display: flex;
  flex-direction: column;
}
.about .about-container .about-right .about-inner .about-title span:first-child {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.about .about-container .about-right .about-inner .about-title span:nth-child(2) {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */
  text-transform: uppercase;
  /* Color / Red */
  color: #D6001C;
}
.about .about-container .about-right .about-inner .about-description {
  width: 100%;
}
.about .about-container .about-right .about-inner .about-description span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  /* Color / Second */
  color: #767676;
}
.about .about-container .about-right .about-inner .about-more-btn {
  width: 100%;
  margin-top: 23px;
}
.about .about-container .about-right .about-inner .about-more-btn a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  /* or 185% */
  /* Color/Head */
  color: #4F4F4D;
}

.rolex-service {
  width: 100%;
  margin-top: 90px;
}
.rolex-service .rolex-service-description {
  display: none;
}
.rolex-service .container {
  width: 100%;
  height: 900px;
  background-image: url(../../images/homePage/rolex-service/reseption3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.rolex-service .container .group {
  width: 90%;
  height: 350px;
  position: absolute;
  top: 50px;
  left: 5%;
  display: flex;
  justify-content: space-between;
}
.rolex-service .container .group .col {
  width: 30%;
  height: 100%;
}
.rolex-service .container .group .col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rolex-service .container .inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9;
}
.rolex-service .container .inner span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 80px;
  /* or 160% */
  text-align: center;
  text-transform: capitalize;
  /* Color / White */
  color: #FFFFFF;
}
.rolex-service .container .inner a {
  margin-top: 43px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 208px;
  height: 50px;
  background-color: #FFFFFF;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  /* identical to box height */
  /* Color/Head */
  color: #4F4F4D;
}
.rolex-service .container .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(89, 89, 89, 0.5);
}

.trend-product {
  width: 100%;
  margin-top: 65px;
}
.trend-product .container {
  width: 1410px;
  margin: auto;
}
.trend-product .container .trend-product-head {
  width: 100%;
  margin-bottom: 13px;
}
.trend-product .container .trend-product-head .trend-product-head-title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.trend-product .container .trend-product-head .trend-product-head-title span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.trend-product .container .trend-product-head .trend-product-head-description {
  width: 100%;
  display: flex;
  justify-content: center;
}
.trend-product .container .trend-product-head .trend-product-head-description span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  color: #808080;
}
.trend-product .container .trend-product-slider {
  width: 100%;
}
.trend-product .container .trend-product-slider .trendProductSlider {
  width: 100%;
  height: 520px;
}
.trend-product .container .trend-product-slider .trendProductSlider .swiper {
  width: 100%;
  height: 100%;
}
.trend-product .container .trend-product-slider .trendProductSlider .swiper .swiper-slide {
  width: 100%;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog {
  width: 100%;
  margin-top: 65px;
}
.blog .container {
  width: 1410px;
  margin: auto;
}
.blog .container .blog-head {
  width: 100%;
  margin-bottom: 13px;
}
.blog .container .blog-head .blog-head-title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.blog .container .blog-head .blog-head-title span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.blog .container .blog-head .blog-head-description {
  width: 100%;
  display: flex;
  justify-content: center;
}
.blog .container .blog-head .blog-head-description span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  color: #808080;
}
.blog .container .blog-slider {
  width: 100%;
}
.blog .container .blog-slider .blogSlider {
  width: 100%;
  height: 520px;
}
.blog .container .blog-slider .blogSlider .swiper {
  width: 100%;
  height: 100%;
}
.blog .container .blog-slider .blogSlider .swiper .swiper-slide {
  width: 100%;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-item {
  width: 330px;
  height: 500px;
  transition: 0.4s ease;
}
.blog-item .item-img {
  width: 100%;
  height: 300px;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
}
.blog-item .item-img .img-container {
  width: 100%;
  height: 240px;
  transition: 0.4s ease;
}
.blog-item .item-img .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-item .item-info {
  width: 100%;
  margin-top: 13px;
}
.blog-item .item-info .info-head {
  width: 100%;
  display: flex;
}
.blog-item .item-info .info-head .blog-author {
  margin-right: 23px;
}
.blog-item .item-info .info-head .blog-author span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-transform: lowercase;
  color: #5A5A5A;
}
.blog-item .item-info .info-head .blog-date span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-transform: lowercase;
  color: #5A5A5A;
}
.blog-item .item-info .blog-title {
  width: 100%;
  margin-top: 12px;
}
.blog-item .item-info .blog-title span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  /* or 173% */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.blog-item .item-info .blog-content {
  width: 100%;
  margin-top: 8px;
}
.blog-item .item-info .blog-content span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  /* Color / Second */
  color: #767676;
}
.blog-item .item-btn {
  width: 100%;
  margin-top: 14px;
}
.blog-item .item-btn a {
  text-decoration: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  /* or 185% */
  /* Color/Head */
  color: #4F4F4D;
  position: relative;
}
.blog-item .item-btn a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 63.29px;
  height: 2.02px;
  background-color: #4F4F4D;
}
.blog-item:hover .img-container {
  width: 100%;
  height: 300px;
  transition: 0.4s ease-in-out;
}
.blog-item:hover .item-btn {
  cursor: pointer;
}

.partner {
  width: 100%;
  margin-top: 65px;
  margin-bottom: 68px;
}
.partner .container {
  width: 1410px;
  margin: auto;
}
.partner .container .partnerSlider {
  width: 100%;
  height: 80px;
}
.partner .container .partnerSlider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.partner .container .partnerSlider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.partner .container .partnerSlider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.category-products {
  width: 100%;
  margin-top: 155px;
}
.category-products .category-products-container {
  width: 1410px;
  margin: auto;
}
.category-products .category-products-container .category-products-row {
  display: flex;
  justify-content: space-between;
}
.category-products .category-products-container .category-products-row .category-products-left {
  width: 310px;
}
.category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header {
  display: none;
}
.category-products .category-products-container .category-products-row .category-products-right {
  width: 1050px;
}

.fixed-sidebar {
  width: 100%;
}
.fixed-sidebar .small-fixed-sidebar-header {
  display: none;
}

.page-slider {
  width: 100%;
  height: 450px;
  background-color: var(--category-products-slider-bg);
  position: relative;
}
.page-slider .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-slider .swiper .swiper-pagination {
  position: absolute;
  bottom: 50px;
  left: 50px;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: 50%;
  display: flex;
  align-items: center;
}
.page-slider .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: black;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-slider .swiper .swiper-pagination .swiper-pagination-bullet span {
  font-size: 20px;
}
.page-slider .swiper .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.page-slider .swiper .swiper-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
}
.page-slider .swiper .swiper-slide {
  width: 100% !important;
  height: 100%;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-slider .swiper .swiper-slide .slider-container {
  width: 90%;
  height: 80%;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row {
  width: 100%;
  height: 100%;
  display: flex;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title {
  width: 70%;
  text-align: left;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 50px;
  /* or 143% */
  /* Color/Head */
  color: #4F4F4D;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span:nth-child(2) {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  /* or 143% */
  /* Color/Head */
  color: #4F4F4D;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-text {
  margin-top: 15px;
  width: 70%;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  text-align: left;
  /* Color/Head */
  color: #4F4F4D;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img {
  width: 60%;
  height: 100%;
}
.page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-slider .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}
.page-slider .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.filter-top {
  width: 100%;
  height: 24px;
  margin-top: 34px;
  margin-bottom: 66px;
}
.filter-top .filter-top-container {
  width: 100%;
  height: 100%;
}
.filter-top .filter-top-container .filter-top-row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.filter-top .filter-top-container .filter-top-row .filter-top-left {
  height: 100%;
  display: inline-block;
}
.filter-top .filter-top-container .filter-top-row .filter-top-left .page-path {
  width: 100%;
  height: 100%;
}
.filter-top .filter-top-container .filter-top-row .filter-top-left .page-path a {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  text-decoration: none;
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.filter-top .filter-top-container .filter-top-row .filter-top-left .page-path span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right {
  height: 100%;
  display: flex;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser {
  height: 100%;
  position: relative;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4F4F4D;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser select {
  border: none;
  outline: none;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page {
  height: 100%;
  display: none;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page .products-all-page-content {
  height: 100%;
  margin-right: 10px;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page .products-all-page-content span {
  text-transform: uppercase;
  height: 100%;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page ul {
  display: flex;
  list-style: none;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page ul li {
  margin-right: 10px;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page ul li:last-child {
  position: relative;
  margin: 0;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page ul li:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4F4F4D;
}
.filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page ul li a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}

.list {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  row-gap: 30px;
  justify-content: space-between;
}

.category-products-pagination {
  width: 100%;
  height: 24px;
  margin-top: 27px;
  margin-bottom: 52px;
  display: flex;
  justify-content: space-between;
}
.category-products-pagination .pagination-prev-btn {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.category-products-pagination .pagination-page-btn {
  height: 100%;
}
.category-products-pagination .pagination-page-btn ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.category-products-pagination .pagination-page-btn ul li:last-child {
  position: relative;
  margin: 0;
}
.category-products-pagination .pagination-page-btn ul li:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4F4F4D;
}
.category-products-pagination .pagination-page-btn ul li a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.category-products-pagination .pagination-next-btn {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}

.category-product-name {
  width: 100%;
}
.category-product-name .category-product-container {
  width: 100%;
}
.category-product-name .category-product-container .category-product-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.category-product-name .category-product-container .category-product-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.category-product-name .category-product-container .category-product-items {
  width: 100%;
}
.category-product-name .category-product-container .category-product-items ul {
  list-style-type: none;
  width: 100%;
}
.category-product-name .category-product-container .category-product-items ul li a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */
  /* Color/Head */
  color: #4F4F4D;
}

.category-colors {
  width: 100%;
  margin-top: 40px;
}
.category-colors .category-colors-container {
  width: 100%;
}
.category-colors .category-colors-container .category-colors-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.category-colors .category-colors-container .category-colors-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.category-colors .category-colors-container .category-colors-items {
  width: 80%;
  margin-top: 23px;
}
.category-colors .category-colors-container .category-colors-items #renkler {
  display: grid;
  row-gap: 26px;
  grid-template-columns: auto auto auto auto auto auto;
}
.category-colors .category-colors-container .category-colors-items #renkler .ellipse {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  transition: 0.2s ease-in-out;
}
.category-colors .category-colors-container .category-colors-items #renkler .ellipse:hover {
  cursor: pointer;
  transform: scale(1.4);
  transition: 0.2s ease-in-out;
}

.category-sizes {
  width: 100%;
  margin-top: 40px;
}
.category-sizes .category-sizes-container {
  width: 100%;
}
.category-sizes .category-sizes-container .category-sizes-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.category-sizes .category-sizes-container .category-sizes-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.category-sizes .category-sizes-container .category-sizes-items {
  width: 100%;
  margin-top: 23px;
}
.category-sizes .category-sizes-container .category-sizes-items #sizes {
  display: grid;
  row-gap: 26px;
  grid-template-columns: auto auto auto auto;
  gap: 10px;
}
.category-sizes .category-sizes-container .category-sizes-items #sizes .size-item {
  width: 100%;
  height: 35px;
  border: 1px solid #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.category-sizes .category-sizes-container .category-sizes-items #sizes .size-item span {
  transition: 0.2s ease-in-out;
}
.category-sizes .category-sizes-container .category-sizes-items #sizes .size-item:hover {
  cursor: pointer;
}
.category-sizes .category-sizes-container .category-sizes-items #sizes .size-item:hover span {
  transition: 0.2s ease-in-out;
}

.category-brands {
  width: 100%;
  margin-top: 40px;
}
.category-brands .category-brands-container {
  width: 100%;
}
.category-brands .category-brands-container .category-brands-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.category-brands .category-brands-container .category-brands-title span {
  font-family: var(--font-Jost);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.category-brands .category-brands-container .category-brands-searchbox {
  width: 100%;
  margin-top: 23px;
  height: 55px;
  margin-top: 23px;
}
.category-brands .category-brands-container .category-brands-searchbox input {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color / Second */
  color: #767676;
}
.category-brands .category-brands-container .category-brands-searchbox i {
  color: #767676;
}
.category-brands .category-brands-container .category-brands-items {
  width: 100%;
  margin-top: 23px;
}
.category-brands .category-brands-container .category-brands-items .category-brands-items-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.category-brands .category-brands-container .category-brands-items .category-brands-items-container .category-brand-item {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-brands .category-brands-container .category-brands-items .category-brands-items-container .category-brand-item .category-brand-name {
  display: flex;
  align-items: center;
}
.category-brands .category-brands-container .category-brands-items .category-brands-items-container .category-brand-item .category-brand-name input {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
.category-brands .category-brands-container .category-brands-items .category-brands-items-container .category-brand-item .category-brand-name .brand-name span {
  font-family: var(--font-Jost);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  /* or 286% */
  /* Color/Head */
  color: #4F4F4D;
}
.category-brands .category-brands-container .category-brands-items .category-brands-items-container .category-brand-item .category-brand-count span {
  font-family: var(--font-Jost);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  /* or 286% */
  text-align: right;
  /* Color / Second */
  color: #767676;
}

.search-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1px solid var(--category-brand-searchbox-border);
  position: relative;
}
.search-box input {
  width: 90%;
  height: 100%;
  outline: none;
  border: none;
  padding: 10px;
}
.search-box i {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-box .result-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  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;
}
.search-box .result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: auto;
}
.search-box .result-box ul li {
  padding: 5px 10px;
  cursor: pointer;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Second */
  color: #767676;
}
.search-box .result-box ul li:hover {
  background-color: #f0f0f0;
}

.category-price-range {
  width: 100%;
  margin-top: 40px;
}
.category-price-range .category-price-range-container {
  width: 100%;
}
.category-price-range .category-price-range-container .category-price-range-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.category-price-range .category-price-range-container .category-price-range-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  text-transform: uppercase;
  /* Color/Head */
  color: #4F4F4D;
}
.category-price-range .category-price-range-container .category-price-range-items {
  width: 100%;
  margin-top: 23px;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 18px auto;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #000000;
  cursor: pointer;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 6px;
  width: 100%;
  position: absolute;
  background-color: #000000;
  pointer-events: none;
  border-radius: 10px;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .sliders_control #fromSlider {
  height: 0;
  z-index: 1;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .form_control {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .form_control .form_control_container {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  /* identical to box height, or 286% */
  /* Color / Second */
  color: #767676;
  display: flex;
  align-items: center;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .form_control input[type=number] {
  border: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  /* identical to box height, or 286% */
  /* Color / Second */
  color: #767676;
}
.category-price-range .category-price-range-container .category-price-range-items .range_container .form_control input[type=number]::-webkit-inner-spin-button,
.category-price-range .category-price-range-container .category-price-range-items .range_container .form_control input[type=number]::-webkit-outer-spin-button {
  opacity: 0;
  background-color: red;
}

.small-category-chooser-selection {
  width: 100%;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  padding: 30px 0;
  background-color: white;
  box-shadow: -2px -4px 10px 0px grey;
  display: none;
}
.small-category-chooser-selection .close-btnn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -15px;
  border-radius: 10px;
  right: -3px;
  background-color: rgb(158, 55, 55);
  width: 30px;
  height: 30px;
  z-index: 99999999;
}
.small-category-chooser-selection .close-btnn span {
  color: white !important;
  font-size: 20px !important;
}
.small-category-chooser-selection .close-btnn:hover {
  cursor: pointer;
}
.small-category-chooser-selection .container {
  width: 384px;
  height: 100%;
  margin: auto;
}
.small-category-chooser-selection .container .items {
  width: 100%;
  height: 200px;
  overflow-y: scroll;
}
.small-category-chooser-selection .container .items .item-title {
  width: 100%;
  padding: 10px 0;
}
.small-category-chooser-selection .container .items .item-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #4F4F4D;
}
.small-category-chooser-selection .container .items ul {
  list-style-type: none;
}
.small-category-chooser-selection .container .items ul li {
  padding: 10px 0;
  position: relative;
}
.small-category-chooser-selection .container .items ul li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.1px;
  background-color: #a8a8a8;
}
.small-category-chooser-selection .container .items ul li a {
  text-decoration: none;
  font-style: normal;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #4F4F4D;
}

.product-view {
  width: 100%;
  margin-top: 155px;
}
.product-view .product-view-container {
  width: 1410px;
  margin: auto;
}
.product-view .product-view-container .product-details {
  width: 100%;
  margin-bottom: 110px;
}
.product-view .product-view-container .product-details .product-details-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.related-product {
  width: 100%;
  margin-top: 65px;
  margin-bottom: 110px;
}
.related-product .related-product-container {
  width: 1410px;
  margin: auto;
}
.related-product .related-product-container .related-product-head {
  width: 100%;
  margin-bottom: 50px;
}
.related-product .related-product-container .related-product-head .related-product-head-title {
  width: 100%;
  display: flex;
}
.related-product .related-product-container .related-product-head .related-product-head-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 38px;
  /* Color/Head */
  color: #4F4F4D;
}
.related-product .related-product-container .related-product-head .related-product-head-title span:nth-child(2) {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 38px;
  /* Color/Head */
  color: #4F4F4D;
}
.related-product .related-product-container .related-product-slider {
  width: 100%;
}
.related-product .related-product-container .related-product-slider .relatedProductSlider {
  width: 100%;
  height: 520px;
}
.related-product .related-product-container .related-product-slider .relatedProductSlider .swiper {
  width: 100%;
  height: 100%;
}
.related-product .related-product-container .related-product-slider .relatedProductSlider .swiper .swiper-slide {
  width: 100%;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-info {
  width: 540px;
}

.product-review {
  width: 100%;
}
.product-review .product-review-container {
  width: 930px;
  margin: auto;
}
.product-review .product-review-container .nav-tabs {
  width: 100%;
  height: 27px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.product-review .product-review-container .nav-tabs .tab {
  position: relative;
}
.product-review .product-review-container .nav-tabs .tab:hover {
  cursor: pointer;
}
.product-review .product-review-container .nav-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4F4F4D;
}
.product-review .product-review-container .nav-tabs .tab span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.product-review .product-review-container .tab-content-container {
  width: 100%;
  height: 500px;
}
.product-review .product-review-container .tab-content-container .tab-content {
  width: 100%;
  display: none;
}
.product-review .product-review-container .tab-content-container .tab-content h3 {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  /* Color/Head */
  color: #4F4F4D;
  margin-bottom: 30px;
}
.product-review .product-review-container .tab-content-container .tab-content span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */
  /* Color/Head */
  color: #4F4F4D;
}
.product-review .product-review-container .tab-content-container .tab-content ul {
  list-style: none;
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.product-review .product-review-container .tab-content-container .tab-content.active {
  display: block;
}

.product-breadcrumb {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-breadcrumb .breadcrumb-path a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  /* Color/Head */
  color: #4F4F4D;
}
.product-breadcrumb .breadcrumb-path a:first-child {
  margin-left: 0;
}
.product-breadcrumb .breadcrumb-path span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
  margin-right: 10px;
}
.product-breadcrumb .breadcrumb-controller a {
  text-decoration: none;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
  text-transform: uppercase;
}
.product-breadcrumb .breadcrumb-controller a:first-child {
  margin-right: 20px;
}
.product-breadcrumb .breadcrumb-controller .fa-chevron-left {
  margin-right: 20px;
  display: inline;
}
.product-breadcrumb .breadcrumb-controller .fa-chevron-right {
  margin-left: 20px;
  display: inline;
}

.product-info-content {
  width: 100%;
  margin-top: 40px;
}
.product-info-content .product-name {
  width: 100%;
}
.product-info-content .product-name span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 38px;
  /* identical to box height */
  /* Color/Head */
  color: #4F4F4D;
}
.product-info-content .product-price {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 7px;
}
.product-info-content .product-price span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  /* identical to box height */
  /* Color/Head */
  color: #4F4F4D;
}
.product-info-content .product-price i {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  /* identical to box height */
  /* Color/Head */
  color: #4F4F4D;
}
.product-info-content .product-description {
  width: 100%;
  margin-top: 25px;
}
.product-info-content .product-description span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.product-info-content .select-size {
  margin-top: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.product-info-content .select-size .select-size-title {
  margin-right: 30px;
}
.product-info-content .select-size .select-size-title span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
}
.product-info-content .select-size #product-sizes {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto;
  grid-template-rows: auto;
  gap: 10px;
}
.product-info-content .select-size #product-sizes .size-items {
  padding: 13px;
  width: 100%;
  height: 35px;
  border: 1px solid #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.product-info-content .select-size #product-sizes .size-items span {
  transition: 0.2s ease-in-out;
}
.product-info-content .select-size #product-sizes .size-items:hover {
  cursor: pointer;
}
.product-info-content .select-size #product-sizes .size-items:hover span {
  transition: 0.2s ease-in-out;
}
.product-info-content .select-size .select-size-guide {
  position: absolute;
  right: 0;
}
.product-info-content .select-size .select-size-guide span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  /* identical to box height, or 185% */
  /* Color/Head */
  color: #4F4F4D;
  position: relative;
}
.product-info-content .select-size .select-size-guide span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4F4F4D;
}
.product-info-content .product-colors {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.product-info-content .product-colors span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color/Head */
  color: #4F4F4D;
  margin-right: 30px;
}
.product-info-content .product-colors #colors {
  display: grid;
  gap: 26px;
  grid-template-columns: auto auto auto auto auto auto;
}
.product-info-content .product-colors #colors .ellipse {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  transition: 0.2s ease-in-out;
}
.product-info-content .product-colors #colors .ellipse:hover {
  cursor: pointer;
  transform: scale(1.4);
  transition: 0.2s ease-in-out;
}
.product-info-content .product-count-selector {
  width: 100%;
  margin-top: 30px;
  display: flex;
}
.product-info-content .product-count-selector .product-quantity {
  width: 115px;
  height: 60px;
  border: 1px solid #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-info-content .product-count-selector .product-quantity .quantity-minus {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info-content .product-count-selector .product-quantity .quantity-minus span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  /* Color/Second */
  color: #767676;
}
.product-info-content .product-count-selector .product-quantity .quantity-input {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info-content .product-count-selector .product-quantity .quantity-input input {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  text-align: center;
}
.product-info-content .product-count-selector .product-quantity .quantity-input input::-webkit-inner-spin-button {
  display: none;
}
.product-info-content .product-count-selector .product-quantity .quantity-input input::-moz-placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  /* Color/Second */
  color: #767676;
}
.product-info-content .product-count-selector .product-quantity .quantity-input input::placeholder {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  /* Color/Second */
  color: #767676;
}
.product-info-content .product-count-selector .product-quantity .quantity-plus {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info-content .product-count-selector .product-quantity .quantity-plus span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  /* Color/Second */
  color: #767676;
}
.product-info-content .product-count-selector .product-add-cart {
  width: 300px;
  height: 60px;
  background-color: #4F4F4D;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info-content .product-count-selector .product-add-cart a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  /* Color / White */
  color: #FFFFFF;
}

.product-gallery {
  width: 710px;
}
.product-gallery .main-product-img {
  width: 100%;
  height: 700px;
  margin-bottom: 10px;
}
.product-gallery .main-product-img .mainProductImg {
  height: 100%;
  width: 100%;
}
.product-gallery .main-product-img .mainProductImg .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-gallery .main-product-img .mainProductImg .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery .main-product-img .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: white;
  font-size: 6px;
  border-radius: 50%;
}
.product-gallery .main-product-img .swiper-button-prev::after {
  font-size: 12px;
  color: #767676;
}
.product-gallery .main-product-img .swiper-button-next {
  width: 45px;
  height: 45px;
  background-color: white;
  font-size: 6px;
  border-radius: 50%;
}
.product-gallery .main-product-img .swiper-button-next::after {
  font-size: 12px;
  color: #767676;
}
.product-gallery .thumbnail-product-img {
  width: 100%;
  height: 90px;
}
.product-gallery .thumbnail-product-img .thumbnailProductImg {
  width: 100%;
  height: 100%;
}
.product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide {
  width: 90px;
  height: 100%;
  opacity: 0.4;
}
.product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery-index2 {
  width: 720px;
}
.product-gallery-index2 .main-product-img-index2 {
  width: 100%;
  height: 700px;
  margin-bottom: 10px;
}
.product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
  height: 100%;
  width: 100%;
}
.product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: white;
  font-size: 6px;
  border-radius: 50%;
}
.product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
  font-size: 12px;
  color: #767676;
}
.product-gallery-index2 .main-product-img-index2 .swiper-button-next {
  width: 45px;
  height: 45px;
  background-color: white;
  font-size: 6px;
  border-radius: 50%;
}
.product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
  font-size: 12px;
  color: #767676;
}
.product-gallery-index2 .thumbnail-product-img-index2 {
  width: 720px;
  height: 750px;
  overflow-x: hidden;
}
.product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 {
  width: 100%;
  height: 100%;
}
.product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper .swiper-slide {
  width: 345px;
  height: 360px;
  opacity: 0.4;
  background-color: white;
  opacity: 1;
}
.product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper .swiper-slide-thumb-active {
  opacity: 1;
}

.product-review-index2 {
  width: 100%;
  margin-top: 30px;
}
.product-review-index2 .product-review-container {
  width: 100%;
  margin: auto;
}
.product-review-index2 .product-review-container .nav-tabs {
  width: 100%;
  height: 27px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-review-index2 .product-review-container .nav-tabs .tab {
  position: relative;
}
.product-review-index2 .product-review-container .nav-tabs .tab:hover {
  cursor: pointer;
}
.product-review-index2 .product-review-container .nav-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4F4F4D;
}
.product-review-index2 .product-review-container .nav-tabs .tab span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  /* Color/Head */
  color: #4F4F4D;
}
.product-review-index2 .product-review-container .tab-content-container {
  width: 100%;
}
.product-review-index2 .product-review-container .tab-content-container .tab-content {
  width: 100%;
  display: none;
}
.product-review-index2 .product-review-container .tab-content-container .tab-content h3 {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  /* Color/Head */
  color: #4F4F4D;
  margin-bottom: 30px;
}
.product-review-index2 .product-review-container .tab-content-container .tab-content span {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */
  /* Color/Head */
  color: #4F4F4D;
}
.product-review-index2 .product-review-container .tab-content-container .tab-content ul {
  list-style: none;
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.product-review-index2 .product-review-container .tab-content-container .tab-content.active {
  display: block;
}

.product-view-index2 {
  width: 100%;
  margin-top: 155px;
}
.product-view-index2 .product-view-container-index2 {
  width: 1410px;
  margin: auto;
}
.product-view-index2 .product-view-container-index2 .product-details-index2 {
  width: 100%;
  margin-bottom: 110px;
}
.product-view-index2 .product-view-container-index2 .product-details-index2 .product-details-container-index2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 479px) and (min-width: 0px) {
  .large-header {
    display: none;
  }
  .header-slider {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    /* or 133% */
    /* Color/Head */
    color: #fdfdfd;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 158px;
    height: 40px;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 14px;
    line-height: 24px;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button:hover {
    cursor: pointer;
  }
  .header-slider .swiper-pagination {
    display: none;
  }
  .popular {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .popular .popular-container {
    width: 100%;
    margin: auto;
  }
  .popular .popular-container .popular-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .popular .popular-container .popular-head .popular-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .popular .popular-container .popular-head .popular-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .popular .popular-container .popular-slider {
    width: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider {
    width: 100%;
    height: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-product {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .new-product .new-product-container {
    width: 100%;
    margin: auto;
  }
  .new-product .new-product-container .new-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .trend-product {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .trend-product .container {
    width: 100%;
    margin: auto;
  }
  .trend-product .container .trend-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .trend-product .container .trend-product-head .trend-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .trend-product .container .trend-product-head .trend-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .trend-product .container .trend-product-slider {
    width: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider {
    width: 100%;
    height: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card {
    width: 100%;
    height: auto;
    transition: 0s ease;
    position: relative;
  }
  .card .new-badge {
    position: absolute;
    width: 40px;
    height: 20.86px;
    right: 10px;
    top: 10px;
    z-index: 9;
    background-color: red;
  }
  .card .new-badge .new-badge-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card .new-badge .new-badge-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    /* or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .card .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    transition: 0s ease;
  }
  .card .card-info .card-info-container {
    width: 100%;
    height: 80%;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card .card-info .card-info-container .product-price {
    transition: 0s ease;
    display: flex;
  }
  .card .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .add-basket-btn {
    display: none;
  }
  .card:hover {
    background-color: white;
    filter: none;
    transition: 0s ease;
    cursor: pointer;
  }
  .card:hover .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card:hover .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    justify-content: start;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card:hover .card-info .card-info-container .product-price {
    transition: 0s ease;
    position: relative;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .add-basket-btn {
    display: none;
  }
  .about {
    width: 100%;
    height: 600px;
    margin-top: 65px;
  }
  .about .about-container {
    width: 100%;
    margin: auto;
    position: relative;
  }
  .about .about-container .about-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about-container .about-right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.413);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about .about-container .about-right .about-inner {
    width: 95%;
    height: 85%;
  }
  .about .about-container .about-right .about-inner .about-logo {
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
  }
  .about .about-container .about-right .about-inner .about-logo img {
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-right .about-inner .about-title {
    width: 100%;
    margin-bottom: 33px;
    display: flex;
    flex-direction: column;
  }
  .about .about-container .about-right .about-inner .about-title span:first-child {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase;
    /* Color/Head */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    /* identical to box height */
    text-transform: uppercase;
    /* Color / Red */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-description {
    width: 100%;
  }
  .about .about-container .about-right .about-inner .about-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    /* Color / Second */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-more-btn {
    width: 100%;
    margin-top: 23px;
  }
  .about .about-container .about-right .about-inner .about-more-btn a {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #ffffff;
  }
  .rolex-service {
    width: 95%;
    margin: auto;
    margin-top: 50px;
  }
  .rolex-service .rolex-service-description {
    width: 100%;
    text-align: center;
    display: block;
  }
  .rolex-service .rolex-service-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .rolex-service .container {
    width: 95%;
    height: 450px;
    margin: auto;
    background-image: none;
    position: relative;
  }
  .rolex-service .container .group {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .rolex-service .container .group .col {
    width: 48%;
    height: 150px;
  }
  .rolex-service .container .group .col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .group .col-end {
    height: 250px;
    width: 100%;
  }
  .rolex-service .container .group .col-end img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .inner {
    display: none;
  }
  .rolex-service .container .overlay {
    display: none;
  }
  .blog {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .blog .container {
    width: 100%;
    margin: auto;
  }
  .blog .container .blog-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .blog .container .blog-head .blog-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .blog .container .blog-head .blog-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .blog .container .blog-slider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-item {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
  }
  .blog-item .item-img .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-item .item-info {
    width: 100%;
    height: calc(100% - 150px);
    margin-top: 13px;
  }
  .blog-item .item-info .info-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .blog-item .item-info .info-head .blog-author span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .info-head .blog-date span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .blog-title {
    width: 100%;
    margin-top: 12px;
  }
  .blog-item .item-info .blog-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    /* or 173% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .blog-item .item-info .blog-content {
    width: 100%;
    margin-top: 8px;
  }
  .blog-item .item-info .blog-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* or 171% */
    /* Color / Second */
    color: #767676;
  }
  .blog-item .item-btn {
    width: 100%;
  }
  .blog-item .item-btn a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #4F4F4D;
    position: relative;
  }
  .blog-item .item-btn a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 63.29px;
    height: 2.02px;
    background-color: #4F4F4D;
  }
  .blog-item:hover .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease-in-out;
  }
  .blog-item:hover .item-btn {
    cursor: pointer;
  }
  .partner {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
    margin-bottom: 48px;
  }
  .partner .container {
    width: 100%;
    margin: auto;
  }
  .partner .container .partnerSlider {
    width: 100%;
    height: 80px;
  }
  .partner .container .partnerSlider .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--footer-bg);
  }
  footer .footer-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: auto;
  }
  footer .footer-container .footer-row {
    width: 100%;
    height: 100%;
  }
  .footer-icons {
    width: 100%;
    height: 541px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 37px;
    background-color: white;
  }
  .footer-icons::after {
    display: none;
  }
  .footer-icons .footer-icons-content {
    width: 100%;
    margin: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
  }
  .footer-icons .footer-icons-content .footer-icons-box {
    width: 95%;
    margin: auto;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 18px;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left i {
    font-size: 45px;
    color: rgb(0, 0, 0);
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-header {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    /* or 162% */
    text-transform: uppercase;
    /* Color / White */
    color: #000000;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-content {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #000000;
  }
  .footer-inner {
    width: 100%;
    height: 100%;
    padding-top: 65px;
    padding-bottom: 50px;
    border-bottom: 1px solid white;
    position: relative;
  }
  .footer-inner::after {
    display: none;
  }
  .footer-inner .footer-inner-container {
    width: 95%;
    margin: auto;
    min-height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left {
    width: 282px;
    height: 100%;
    margin-right: 0;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo {
    width: 140px;
    height: 70px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo img {
    width: 100%;
    height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress {
    width: 100%;
    height: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social {
    height: 100%;
    display: flex;
    gap: 36px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social .footer-social-icon-box {
    height: 100%;
    color: white;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center {
    width: 282px;
    height: 100%;
    margin-right: 105px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 34px;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-right {
    display: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header {
    width: 100%;
    margin-bottom: 27px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description {
    width: 282px;
    margin-bottom: 15px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 14px 21px;
    margin-bottom: 41px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header img {
    margin-top: 11px;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 20px 0;
  }
  .footer-bottom {
    width: 100%;
    height: 100%;
    padding-top: 27px;
    padding-bottom: 33px;
  }
  .footer-bottom .footer-bottom-container {
    width: 95%;
    margin: auto;
    min-height: 13px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left {
    width: 49px;
    height: 12px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left img {
    width: 100%;
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right {
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 19px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover {
    cursor: pointer;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover .footer-right-language-chooser {
    display: block;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language i {
    margin-left: 10px;
    font-size: 13px;
    color: white;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser {
    height: 80px;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 9999;
    left: -10px;
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
    justify-content: space-between;
    display: none;
    background-color: var(--card-hover-basket-btn-bg);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 36px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a:hover {
    color: goldenrod;
  }
  .category-products {
    width: 100%;
    margin-top: 70px;
  }
  .category-products .category-products-container {
    width: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    position: fixed;
    padding: 100px 0;
    top: 0px;
    left: 0;
    z-index: 999999;
    display: none;
    animation: ShowSidebar 0.2s ease-in;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header {
    display: block;
    width: 100%;
    height: 82px;
    background-color: #FAF9F8;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i {
    font-size: 16px;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-row .category-products-right {
    width: 100%;
    margin: auto;
  }
  @keyframes ShowSidebar {
    0% {
      width: 0;
    }
    25% {
      width: 25%;
    }
    50% {
      width: 50%;
    }
    75% {
      width: 75%;
    }
    100% {
      width: 100%;
    }
  }
  .fixed-sidebar {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .page-slider {
    width: 100%;
    height: 200px;
    background-color: var(--category-products-slider-bg);
    position: relative;
  }
  .page-slider .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-slider .swiper .swiper-pagination {
    display: none;
  }
  .page-slider .swiper .swiper-slide {
    width: 100% !important;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-slider .swiper .swiper-slide .slider-container {
    width: 90%;
    height: 80%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title {
    width: 70%;
    text-align: left;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-text {
    margin-top: 15px;
    width: 100%;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    text-align: left;
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img {
    width: 60%;
    height: 100%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-slider .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }
  .page-slider .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
  .filter-top {
    width: 95%;
    margin: auto;
    height: 24px;
    margin-top: 34px;
    margin-bottom: 30px;
  }
  .filter-top .filter-top-container {
    width: 100%;
    height: 100%;
  }
  .filter-top .filter-top-container .filter-top-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-left {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter i {
    font-size: 14px;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin-left: 10px;
    color: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser {
    height: 100%;
    margin-right: 0px;
    position: relative;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser select {
    border: none;
    outline: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .divider {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page {
    display: none;
  }
  .list {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .category-products-pagination {
    display: none;
  }
  .product-view {
    width: 100%;
    margin-top: 70px;
  }
  .product-view .product-view-container {
    width: 100%;
    margin: auto;
  }
  .product-view .product-view-container .product-details {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view .product-view-container .product-details .product-details-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    /* Modal Content (image) */
  }
  .modal .modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 95%;
    /* The Close Button */
  }
  .modal .modal-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal .modal-content .close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 99;
  }
  .modal .modal-content .close:hover, .modal .modal-content .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  .product-gallery {
    width: 100%;
  }
  .product-gallery .main-product-img {
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery .main-product-img .mainProductImg {
    height: 100%;
    width: 100%;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery .main-product-img .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .main-product-img .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .thumbnail-product-img {
    width: 95%;
    margin: auto;
    height: 90px;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg {
    width: 100%;
    height: 100%;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide {
    width: 90px;
    height: 100%;
    opacity: 0.4;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide-thumb-active {
    opacity: 1;
  }
  .product-info {
    width: 95%;
    margin: auto;
  }
  .product-breadcrumb {
    display: none;
  }
  .product-info-content {
    width: 100%;
    margin-top: 30px;
  }
  .product-info-content .product-name {
    width: 100%;
  }
  .product-info-content .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 7px;
  }
  .product-info-content .product-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price i {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-description {
    width: 100%;
    margin-top: 25px;
  }
  .product-info-content .product-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .select-size {
    display: none;
  }
  .product-info-content .product-colors {
    display: none;
  }
  .product-info-content .product-count-selector {
    width: 100%;
    margin-top: 30px;
    display: flex;
  }
  .product-info-content .product-count-selector .product-quantity {
    width: 115px;
    height: 60px;
    border: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    text-align: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-webkit-inner-spin-button {
    display: none;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-moz-placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-add-cart {
    width: 300px;
    height: 60px;
    background-color: #4F4F4D;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-add-cart a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .product-review {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container {
    width: 95%;
    margin: auto;
  }
  .product-review .product-review-container .nav-tabs {
    width: 100%;
    height: 27px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .product-review .product-review-container .nav-tabs .tab {
    position: relative;
  }
  .product-review .product-review-container .nav-tabs .tab:hover {
    cursor: pointer;
  }
  .product-review .product-review-container .nav-tabs .tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4F4F4D;
  }
  .product-review .product-review-container .nav-tabs .tab span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container .tab-content-container .tab-content {
    width: 100%;
    display: none;
  }
  .product-review .product-review-container .tab-content-container .tab-content h3 {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container .tab-content ul {
    list-style: none;
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content.active {
    display: block;
  }
  .related-product {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 100px;
  }
  .related-product .related-product-container {
    width: 95%;
    margin: auto;
  }
  .related-product .related-product-container .related-product-head {
    width: 100%;
    margin-bottom: 50px;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title {
    width: 100%;
    display: flex;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-slider {
    width: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-view-index2 {
    width: 100%;
    margin-top: 70px;
  }
  .product-view-index2 .product-view-container-index2 {
    width: 100%;
    margin: auto;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 .product-details-container-index2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-gallery-index2 {
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
    height: 700px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 {
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 {
    width: 95%;
    margin: auto;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 {
    width: 100%;
    height: 100%;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide {
    width: 90px;
    height: 100%;
    opacity: 0.4;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide-thumb-active {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) and (min-width: 480px) {
  .large-header {
    display: none;
  }
  .header-slider {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    /* or 133% */
    /* Color/Head */
    color: #fdfdfd;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 158px;
    height: 40px;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 14px;
    line-height: 24px;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button:hover {
    cursor: pointer;
  }
  .header-slider .swiper-pagination {
    display: none;
  }
  .popular {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .popular .popular-container {
    width: 100%;
    margin: auto;
  }
  .popular .popular-container .popular-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .popular .popular-container .popular-head .popular-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .popular .popular-container .popular-head .popular-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .popular .popular-container .popular-slider {
    width: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider {
    width: 100%;
    height: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-product {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .new-product .new-product-container {
    width: 100%;
    margin: auto;
  }
  .new-product .new-product-container .new-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .trend-product {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .trend-product .container {
    width: 100%;
    margin: auto;
  }
  .trend-product .container .trend-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .trend-product .container .trend-product-head .trend-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .trend-product .container .trend-product-head .trend-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .trend-product .container .trend-product-slider {
    width: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider {
    width: 100%;
    height: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card {
    width: 100%;
    height: auto;
    transition: 0s ease;
    position: relative;
  }
  .card .new-badge {
    position: absolute;
    width: 40px;
    height: 20.86px;
    right: 10px;
    top: 10px;
    z-index: 9;
    background-color: red;
  }
  .card .new-badge .new-badge-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card .new-badge .new-badge-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    /* or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .card .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    transition: 0s ease;
  }
  .card .card-info .card-info-container {
    width: 100%;
    height: 80%;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card .card-info .card-info-container .product-price {
    transition: 0s ease;
    display: flex;
  }
  .card .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .add-basket-btn {
    display: none;
  }
  .card:hover {
    background-color: white;
    filter: none;
    transition: 0s ease;
    cursor: pointer;
  }
  .card:hover .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card:hover .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    justify-content: start;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card:hover .card-info .card-info-container .product-price {
    transition: 0s ease;
    position: relative;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .add-basket-btn {
    display: none;
  }
  .about {
    width: 100%;
    height: 600px;
    margin-top: 65px;
  }
  .about .about-container {
    width: 100%;
    margin: auto;
    position: relative;
  }
  .about .about-container .about-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about-container .about-right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.413);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about .about-container .about-right .about-inner {
    width: 85%;
    height: 85%;
  }
  .about .about-container .about-right .about-inner .about-logo {
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
  }
  .about .about-container .about-right .about-inner .about-logo img {
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-right .about-inner .about-title {
    width: 100%;
    margin-bottom: 33px;
    display: flex;
    flex-direction: column;
  }
  .about .about-container .about-right .about-inner .about-title span:first-child {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase;
    /* Color/Head */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    /* identical to box height */
    text-transform: uppercase;
    /* Color / Red */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-description {
    width: 100%;
  }
  .about .about-container .about-right .about-inner .about-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    /* Color / Second */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-more-btn {
    width: 100%;
    margin-top: 23px;
  }
  .about .about-container .about-right .about-inner .about-more-btn a {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #ffffff;
  }
  .rolex-service {
    width: 95%;
    margin: auto;
    margin-top: 50px;
  }
  .rolex-service .rolex-service-description {
    width: 100%;
    text-align: center;
    display: block;
  }
  .rolex-service .rolex-service-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .rolex-service .container {
    width: 95%;
    height: 500px;
    margin: auto;
    background-image: none;
    position: relative;
  }
  .rolex-service .container .group {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .rolex-service .container .group .col {
    width: 48%;
    height: 200px;
  }
  .rolex-service .container .group .col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .group .col-end {
    height: 250px;
    width: 100%;
  }
  .rolex-service .container .group .col-end img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .inner {
    display: none;
  }
  .rolex-service .container .overlay {
    display: none;
  }
  .blog {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .blog .container {
    width: 100%;
    margin: auto;
  }
  .blog .container .blog-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .blog .container .blog-head .blog-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .blog .container .blog-head .blog-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .blog .container .blog-slider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-item {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
  }
  .blog-item .item-img .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-item .item-info {
    width: 100%;
    height: calc(100% - 150px);
    margin-top: 13px;
  }
  .blog-item .item-info .info-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .blog-item .item-info .info-head .blog-author span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .info-head .blog-date span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .blog-title {
    width: 100%;
    margin-top: 12px;
  }
  .blog-item .item-info .blog-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    /* or 173% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .blog-item .item-info .blog-content {
    width: 100%;
    margin-top: 8px;
  }
  .blog-item .item-info .blog-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* or 171% */
    /* Color / Second */
    color: #767676;
  }
  .blog-item .item-btn {
    width: 100%;
  }
  .blog-item .item-btn a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #4F4F4D;
    position: relative;
  }
  .blog-item .item-btn a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 63.29px;
    height: 2.02px;
    background-color: #4F4F4D;
  }
  .blog-item:hover .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease-in-out;
  }
  .blog-item:hover .item-btn {
    cursor: pointer;
  }
  .partner {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
    margin-bottom: 48px;
  }
  .partner .container {
    width: 100%;
    margin: auto;
  }
  .partner .container .partnerSlider {
    width: 100%;
    height: 80px;
  }
  .partner .container .partnerSlider .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--footer-bg);
  }
  footer .footer-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: auto;
  }
  footer .footer-container .footer-row {
    width: 100%;
    height: 100%;
  }
  .footer-icons {
    width: 100%;
    height: 541px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 37px;
    background-color: white;
  }
  .footer-icons::after {
    display: none;
  }
  .footer-icons .footer-icons-content {
    width: 100%;
    margin: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
  }
  .footer-icons .footer-icons-content .footer-icons-box {
    width: 95%;
    margin: auto;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 18px;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left i {
    font-size: 55px;
    color: rgb(0, 0, 0);
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-header {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    /* or 162% */
    text-transform: uppercase;
    /* Color / White */
    color: #000000;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-content {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    /* Color / White */
    color: #000000;
  }
  .footer-inner {
    width: 100%;
    height: 100%;
    padding-top: 65px;
    padding-bottom: 50px;
    border-bottom: 1px solid white;
    position: relative;
  }
  .footer-inner::after {
    display: none;
  }
  .footer-inner .footer-inner-container {
    width: 95%;
    margin: auto;
    min-height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo {
    width: 140px;
    height: 70px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo img {
    width: 100%;
    height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress {
    width: calc(100% - 200px);
    height: 100%;
    margin-top: 0px;
    margin-bottom: 25px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact {
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 22px;
    margin-top: 20px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social {
    width: calc(100% - 200px);
    height: 100%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    gap: 50px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social .footer-social-icon-box {
    height: 100%;
    color: white;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center {
    width: 100%;
    height: 100%;
    margin-right: 105px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 34px;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-right {
    display: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header {
    width: 100%;
    margin-bottom: 27px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description {
    width: 282px;
    margin-bottom: 15px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 14px 21px;
    margin-bottom: 41px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header img {
    margin-top: 11px;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 20px 0;
  }
  .footer-bottom {
    width: 100%;
    height: 100%;
    padding-top: 27px;
    padding-bottom: 33px;
  }
  .footer-bottom .footer-bottom-container {
    width: 95%;
    margin: auto;
    min-height: 13px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left {
    width: 49px;
    height: 12px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left img {
    width: 100%;
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right {
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 19px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover {
    cursor: pointer;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover .footer-right-language-chooser {
    display: block;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language i {
    margin-left: 10px;
    font-size: 13px;
    color: white;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser {
    height: 80px;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 9999;
    left: -10px;
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
    justify-content: space-between;
    display: none;
    background-color: var(--card-hover-basket-btn-bg);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 36px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a:hover {
    color: goldenrod;
  }
  .category-products {
    width: 100%;
    margin-top: 70px;
  }
  .category-products .category-products-container {
    width: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    position: fixed;
    padding: 100px 0;
    top: 0px;
    left: 0;
    z-index: 999999;
    display: none;
    animation: ShowSidebar 0.2s ease-in;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header {
    display: block;
    width: 100%;
    height: 82px;
    background-color: #FAF9F8;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i {
    font-size: 16px;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-row .category-products-right {
    width: 100%;
    margin: auto;
  }
  @keyframes ShowSidebar {
    0% {
      width: 0;
    }
    25% {
      width: 25%;
    }
    50% {
      width: 50%;
    }
    75% {
      width: 75%;
    }
    100% {
      width: 100%;
    }
  }
  .fixed-sidebar {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .page-slider {
    width: 100%;
    height: 250px;
    background-color: var(--category-products-slider-bg);
    position: relative;
  }
  .page-slider .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-slider .swiper .swiper-pagination {
    display: none;
  }
  .page-slider .swiper .swiper-slide {
    width: 100% !important;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-slider .swiper .swiper-slide .slider-container {
    width: 90%;
    height: 80%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title {
    width: 70%;
    text-align: left;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-text {
    margin-top: 15px;
    width: 100%;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    text-align: left;
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img {
    width: 60%;
    height: 100%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-slider .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }
  .page-slider .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
  .filter-top {
    width: 95%;
    margin: auto;
    height: 24px;
    margin-top: 34px;
    margin-bottom: 30px;
  }
  .filter-top .filter-top-container {
    width: 100%;
    height: 100%;
  }
  .filter-top .filter-top-container .filter-top-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-left {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter i {
    font-size: 14px;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin-left: 10px;
    color: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser {
    height: 100%;
    margin-right: 0px;
    position: relative;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser select {
    border: none;
    outline: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .divider {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page {
    display: none;
  }
  .list {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .category-products-pagination {
    display: none;
  }
  .product-view {
    width: 100%;
    margin-top: 70px;
  }
  .product-view .product-view-container {
    width: 100%;
    margin: auto;
  }
  .product-view .product-view-container .product-details {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view .product-view-container .product-details .product-details-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    /* Modal Content (image) */
  }
  .modal .modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 95%;
    /* The Close Button */
  }
  .modal .modal-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal .modal-content .close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 99;
  }
  .modal .modal-content .close:hover, .modal .modal-content .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  .product-gallery {
    width: 100%;
  }
  .product-gallery .main-product-img {
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery .main-product-img .mainProductImg {
    height: 100%;
    width: 100%;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery .main-product-img .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .main-product-img .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .thumbnail-product-img {
    width: 95%;
    margin: auto;
    height: 90px;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg {
    width: 100%;
    height: 100%;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide {
    width: 90px;
    height: 100%;
    opacity: 0.4;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide-thumb-active {
    opacity: 1;
  }
  .product-info {
    width: 95%;
    margin: auto;
  }
  .product-breadcrumb {
    display: none;
  }
  .product-info-content {
    width: 100%;
    margin-top: 30px;
  }
  .product-info-content .product-name {
    width: 100%;
  }
  .product-info-content .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 7px;
  }
  .product-info-content .product-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price i {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-description {
    width: 100%;
    margin-top: 25px;
  }
  .product-info-content .product-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .select-size {
    display: none;
  }
  .product-info-content .product-colors {
    display: none;
  }
  .product-info-content .product-count-selector {
    width: 100%;
    margin-top: 30px;
    display: flex;
  }
  .product-info-content .product-count-selector .product-quantity {
    width: 115px;
    height: 60px;
    border: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    text-align: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-webkit-inner-spin-button {
    display: none;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-moz-placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-add-cart {
    width: 300px;
    height: 60px;
    background-color: #4F4F4D;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-add-cart a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .product-review {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container {
    width: 95%;
    margin: auto;
  }
  .product-review .product-review-container .nav-tabs {
    width: 100%;
    height: 27px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .product-review .product-review-container .nav-tabs .tab {
    position: relative;
  }
  .product-review .product-review-container .nav-tabs .tab:hover {
    cursor: pointer;
  }
  .product-review .product-review-container .nav-tabs .tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4F4F4D;
  }
  .product-review .product-review-container .nav-tabs .tab span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container .tab-content-container .tab-content {
    width: 100%;
    display: none;
  }
  .product-review .product-review-container .tab-content-container .tab-content h3 {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container .tab-content ul {
    list-style: none;
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content.active {
    display: block;
  }
  .related-product {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 100px;
  }
  .related-product .related-product-container {
    width: 95%;
    margin: auto;
  }
  .related-product .related-product-container .related-product-head {
    width: 100%;
    margin-bottom: 50px;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title {
    width: 100%;
    display: flex;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-slider {
    width: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-view-index2 {
    width: 100%;
    margin-top: 70px;
  }
  .product-view-index2 .product-view-container-index2 {
    width: 100%;
    margin: auto;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 .product-details-container-index2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-gallery-index2 {
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
    height: 700px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 {
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 {
    width: 95%;
    margin: auto;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 {
    width: 100%;
    height: 100%;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide {
    width: 90px;
    height: 100%;
    opacity: 0.4;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide-thumb-active {
    opacity: 1;
  }
}
@media only screen and (max-width: 959px) and (min-width: 768px) {
  .large-header {
    display: none;
  }
  .header-slider {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    /* or 133% */
    /* Color/Head */
    color: #fdfdfd;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 158px;
    height: 40px;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 14px;
    line-height: 24px;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button:hover {
    cursor: pointer;
  }
  .header-slider .swiper-pagination {
    display: none;
  }
  .popular {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .popular .popular-container {
    width: 100%;
    margin: auto;
  }
  .popular .popular-container .popular-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .popular .popular-container .popular-head .popular-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .popular .popular-container .popular-head .popular-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .popular .popular-container .popular-slider {
    width: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider {
    width: 100%;
    height: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-product {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .new-product .new-product-container {
    width: 100%;
    margin: auto;
  }
  .new-product .new-product-container .new-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .trend-product {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .trend-product .container {
    width: 100%;
    margin: auto;
  }
  .trend-product .container .trend-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .trend-product .container .trend-product-head .trend-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .trend-product .container .trend-product-head .trend-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .trend-product .container .trend-product-slider {
    width: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider {
    width: 100%;
    height: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card {
    width: 100%;
    height: auto;
    transition: 0s ease;
    position: relative;
  }
  .card .new-badge {
    position: absolute;
    width: 40px;
    height: 20.86px;
    right: 10px;
    top: 10px;
    z-index: 9;
    background-color: red;
  }
  .card .new-badge .new-badge-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card .new-badge .new-badge-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    /* or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .card .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    transition: 0s ease;
  }
  .card .card-info .card-info-container {
    width: 100%;
    height: 80%;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card .card-info .card-info-container .product-price {
    transition: 0s ease;
    display: flex;
  }
  .card .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .add-basket-btn {
    display: none;
  }
  .card:hover {
    background-color: white;
    filter: none;
    transition: 0s ease;
    cursor: pointer;
  }
  .card:hover .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card:hover .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    justify-content: start;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card:hover .card-info .card-info-container .product-price {
    transition: 0s ease;
    position: relative;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .add-basket-btn {
    display: none;
  }
  .about {
    width: 100%;
    height: 600px;
    margin-top: 65px;
  }
  .about .about-container {
    width: 100%;
    margin: auto;
    position: relative;
  }
  .about .about-container .about-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about-container .about-right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.413);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about .about-container .about-right .about-inner {
    width: 75%;
    height: 75%;
  }
  .about .about-container .about-right .about-inner .about-logo {
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
  }
  .about .about-container .about-right .about-inner .about-logo img {
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-right .about-inner .about-title {
    width: 100%;
    margin-bottom: 33px;
    display: flex;
    flex-direction: column;
  }
  .about .about-container .about-right .about-inner .about-title span:first-child {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase;
    /* Color/Head */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    /* identical to box height */
    text-transform: uppercase;
    /* Color / Red */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-description {
    width: 100%;
  }
  .about .about-container .about-right .about-inner .about-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    /* Color / Second */
    color: #ffffff;
  }
  .about .about-container .about-right .about-inner .about-more-btn {
    width: 100%;
    margin-top: 23px;
  }
  .about .about-container .about-right .about-inner .about-more-btn a {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #ffffff;
  }
  .rolex-service {
    width: 95%;
    margin: auto;
    margin-top: 50px;
  }
  .rolex-service .rolex-service-description {
    width: 100%;
    text-align: center;
    display: block;
  }
  .rolex-service .rolex-service-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .rolex-service .container {
    width: 95%;
    height: 500px;
    margin: auto;
    background-image: none;
    position: relative;
  }
  .rolex-service .container .group {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .rolex-service .container .group .col {
    width: 48%;
    height: 200px;
  }
  .rolex-service .container .group .col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .group .col-end {
    height: 250px;
    width: 100%;
  }
  .rolex-service .container .group .col-end img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .inner {
    display: none;
  }
  .rolex-service .container .overlay {
    display: none;
  }
  .blog {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .blog .container {
    width: 100%;
    margin: auto;
  }
  .blog .container .blog-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .blog .container .blog-head .blog-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .blog .container .blog-head .blog-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .blog .container .blog-slider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-item {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
  }
  .blog-item .item-img .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-item .item-info {
    width: 100%;
    height: calc(100% - 150px);
    margin-top: 13px;
  }
  .blog-item .item-info .info-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .blog-item .item-info .info-head .blog-author span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .info-head .blog-date span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .blog-title {
    width: 100%;
    margin-top: 12px;
  }
  .blog-item .item-info .blog-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    /* or 173% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .blog-item .item-info .blog-content {
    width: 100%;
    margin-top: 8px;
  }
  .blog-item .item-info .blog-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* or 171% */
    /* Color / Second */
    color: #767676;
  }
  .blog-item .item-btn {
    width: 100%;
  }
  .blog-item .item-btn a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #4F4F4D;
    position: relative;
  }
  .blog-item .item-btn a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 63.29px;
    height: 2.02px;
    background-color: #4F4F4D;
  }
  .blog-item:hover .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease-in-out;
  }
  .blog-item:hover .item-btn {
    cursor: pointer;
  }
  .partner {
    width: 95%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
    margin-bottom: 48px;
  }
  .partner .container {
    width: 100%;
    margin: auto;
  }
  .partner .container .partnerSlider {
    width: 100%;
    height: 80px;
  }
  .partner .container .partnerSlider .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--footer-bg);
  }
  footer .footer-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: auto;
  }
  footer .footer-container .footer-row {
    width: 100%;
    height: 100%;
  }
  .footer-icons {
    width: 100%;
    height: 441px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 37px;
    background-color: white;
  }
  .footer-icons::after {
    display: none;
  }
  .footer-icons .footer-icons-content {
    width: 100%;
    margin: auto;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: white;
  }
  .footer-icons .footer-icons-content .footer-icons-box {
    width: 50%;
    margin: auto;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 18px;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left i {
    font-size: 55px;
    color: rgb(0, 0, 0);
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-header {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    /* or 162% */
    text-transform: uppercase;
    /* Color / White */
    color: #000000;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-content {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    /* Color / White */
    color: #000000;
  }
  .footer-inner {
    width: 100%;
    height: 100%;
    padding-top: 65px;
    padding-bottom: 50px;
    border-bottom: 1px solid white;
    position: relative;
  }
  .footer-inner::after {
    display: none;
  }
  .footer-inner .footer-inner-container {
    width: 95%;
    margin: auto;
    min-height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo {
    width: 140px;
    height: 70px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo img {
    width: 100%;
    height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress {
    width: calc(100% - 300px);
    height: 100%;
    margin-top: 0px;
    margin-bottom: 25px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact {
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 22px;
    margin-top: 40px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social {
    width: calc(100% - 300px);
    height: 100%;
    margin: auto;
    margin-top: 40px;
    display: flex;
    gap: 50px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social .footer-social-icon-box {
    height: 100%;
    color: white;
    font-size: 18px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center {
    width: 100%;
    height: 100%;
    margin-right: 105px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 34px;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-right {
    display: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header {
    width: 100%;
    margin-bottom: 27px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description {
    width: 282px;
    margin-bottom: 15px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 14px 21px;
    margin-bottom: 41px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header img {
    margin-top: 11px;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 20px 0;
  }
  .footer-bottom {
    width: 100%;
    height: 100%;
    padding-top: 27px;
    padding-bottom: 33px;
  }
  .footer-bottom .footer-bottom-container {
    width: 95%;
    margin: auto;
    min-height: 13px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left {
    width: 49px;
    height: 12px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left img {
    width: 100%;
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right {
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 19px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover {
    cursor: pointer;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover .footer-right-language-chooser {
    display: block;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language i {
    margin-left: 10px;
    font-size: 13px;
    color: white;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser {
    height: 80px;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 9999;
    left: -10px;
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
    justify-content: space-between;
    display: none;
    background-color: var(--card-hover-basket-btn-bg);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 36px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a:hover {
    color: goldenrod;
  }
  .category-products {
    width: 100%;
    margin-top: 70px;
  }
  .category-products .category-products-container {
    width: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    position: fixed;
    padding: 100px 0;
    top: 0px;
    left: 0;
    z-index: 999999;
    display: none;
    animation: ShowSidebar 0.2s ease-in;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header {
    display: block;
    width: 100%;
    height: 82px;
    background-color: #FAF9F8;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i {
    font-size: 16px;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-row .category-products-right {
    width: 100%;
    margin: auto;
  }
  @keyframes ShowSidebar {
    0% {
      width: 0;
    }
    25% {
      width: 25%;
    }
    50% {
      width: 50%;
    }
    75% {
      width: 75%;
    }
    100% {
      width: 100%;
    }
  }
  .fixed-sidebar {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .page-slider {
    width: 100%;
    height: 300px;
    background-color: var(--category-products-slider-bg);
    position: relative;
  }
  .page-slider .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-slider .swiper .swiper-pagination {
    display: none;
  }
  .page-slider .swiper .swiper-slide {
    width: 100% !important;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-slider .swiper .swiper-slide .slider-container {
    width: 90%;
    height: 80%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title {
    width: 70%;
    text-align: left;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-text {
    margin-top: 15px;
    width: 100%;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    text-align: left;
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img {
    width: 60%;
    height: 100%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-slider .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }
  .page-slider .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
  .filter-top {
    width: 95%;
    margin: auto;
    height: 24px;
    margin-top: 34px;
    margin-bottom: 30px;
  }
  .filter-top .filter-top-container {
    width: 100%;
    height: 100%;
  }
  .filter-top .filter-top-container .filter-top-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-left {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter i {
    font-size: 14px;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin-left: 10px;
    color: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser {
    height: 100%;
    margin-right: 0px;
    position: relative;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser select {
    border: none;
    outline: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .divider {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page {
    display: none;
  }
  .list {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .category-products-pagination {
    display: none;
  }
  .product-view {
    width: 100%;
    margin-top: 70px;
  }
  .product-view .product-view-container {
    width: 100%;
    margin: auto;
  }
  .product-view .product-view-container .product-details {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view .product-view-container .product-details .product-details-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    /* Modal Content (image) */
  }
  .modal .modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 95%;
    /* The Close Button */
  }
  .modal .modal-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal .modal-content .close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 99;
  }
  .modal .modal-content .close:hover, .modal .modal-content .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  .product-gallery {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .product-gallery .main-product-img {
    width: 75%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery .main-product-img .mainProductImg {
    height: 100%;
    width: 100%;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-gallery .main-product-img .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .main-product-img .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .thumbnail-product-img {
    width: 20%;
    margin: auto;
    height: 550px;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg {
    width: 100%;
    height: 100%;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide {
    width: 100%;
    height: 25%;
    opacity: 0.4;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide-thumb-active {
    opacity: 1;
  }
  .product-info {
    width: 95%;
    margin: auto;
  }
  .product-breadcrumb {
    display: none;
  }
  .product-info-content {
    width: 100%;
    margin-top: 30px;
  }
  .product-info-content .product-name {
    width: 100%;
  }
  .product-info-content .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 7px;
  }
  .product-info-content .product-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price i {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-description {
    width: 100%;
    margin-top: 25px;
  }
  .product-info-content .product-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .select-size {
    display: none;
  }
  .product-info-content .product-colors {
    display: none;
  }
  .product-info-content .product-count-selector {
    width: 100%;
    margin-top: 30px;
    display: flex;
  }
  .product-info-content .product-count-selector .product-quantity {
    width: 115px;
    height: 60px;
    border: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    text-align: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-webkit-inner-spin-button {
    display: none;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-moz-placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-add-cart {
    width: 300px;
    height: 60px;
    background-color: #4F4F4D;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-add-cart a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .product-review {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container {
    width: 95%;
    margin: auto;
  }
  .product-review .product-review-container .nav-tabs {
    width: 100%;
    height: 27px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .product-review .product-review-container .nav-tabs .tab {
    position: relative;
  }
  .product-review .product-review-container .nav-tabs .tab:hover {
    cursor: pointer;
  }
  .product-review .product-review-container .nav-tabs .tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4F4F4D;
  }
  .product-review .product-review-container .nav-tabs .tab span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container .tab-content-container .tab-content {
    width: 100%;
    display: none;
  }
  .product-review .product-review-container .tab-content-container .tab-content h3 {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container .tab-content ul {
    list-style: none;
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content.active {
    display: block;
  }
  .related-product {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 100px;
  }
  .related-product .related-product-container {
    width: 95%;
    margin: auto;
  }
  .related-product .related-product-container .related-product-head {
    width: 100%;
    margin-bottom: 50px;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title {
    width: 100%;
    display: flex;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-slider {
    width: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-view-index2 {
    width: 100%;
    margin-top: 70px;
  }
  .product-view-index2 .product-view-container-index2 {
    width: 100%;
    margin: auto;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 .product-details-container-index2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-gallery-index2 {
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
    height: 700px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 {
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 {
    width: 95%;
    margin: auto;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 {
    width: 100%;
    height: 100%;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide {
    width: 90px;
    height: 100%;
    opacity: 0.4;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-slide-thumb-active {
    opacity: 1;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 960px) {
  .large-header {
    display: none;
  }
  .open-nav {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 999999;
  }
  .open-nav .container {
    width: 100%;
    height: 100%;
    margin: auto;
    margin-top: 21px;
  }
  .open-nav .container .row {
    width: 80%;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .open-nav .container .row .open-nav-bottom {
    width: 100%;
    height: 200px;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .open-nav .container .row .open-nav-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.1px;
    background-color: #E4E4E4;
  }
  .open-nav .container .row .open-nav-bottom .container {
    width: 80%;
    height: 100%;
    margin: auto;
  }
  .header-slider {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    /* or 133% */
    /* Color/Head */
    color: #fdfdfd;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 158px;
    height: 40px;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 14px;
    line-height: 24px;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button:hover {
    cursor: pointer;
  }
  .header-slider .swiper-pagination {
    display: none;
  }
  .popular {
    width: 80%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .popular .popular-container {
    width: 100%;
    margin: auto;
  }
  .popular .popular-container .popular-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .popular .popular-container .popular-head .popular-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .popular .popular-container .popular-head .popular-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .popular .popular-container .popular-head .popular-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .popular .popular-container .popular-slider {
    width: 100%;
  }
  .popular .popular-container .popular-slider .popularSlider {
    width: 100%;
    height: 100%;
  }
  .new-product {
    width: 80%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .new-product .new-product-container {
    width: 100%;
    margin: auto;
  }
  .new-product .new-product-container .new-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-head .new-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
  }
  .new-product .new-product-container .new-product-slider .newProductSlider {
    width: 100%;
    height: 100%;
  }
  .trend-product {
    width: 80%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .trend-product .container {
    width: 100%;
    margin: auto;
  }
  .trend-product .container .trend-product-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .trend-product .container .trend-product-head .trend-product-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .trend-product .container .trend-product-head .trend-product-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trend-product .container .trend-product-head .trend-product-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .trend-product .container .trend-product-slider {
    width: 100%;
  }
  .trend-product .container .trend-product-slider .trendProductSlider {
    width: 100%;
    height: 100%;
  }
  .card {
    width: 100%;
    height: auto;
    transition: 0s ease;
    position: relative;
  }
  .card .new-badge {
    position: absolute;
    width: 40px;
    height: 20.86px;
    right: 10px;
    top: 10px;
    z-index: 9;
    background-color: red;
  }
  .card .new-badge .new-badge-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card .new-badge .new-badge-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    /* or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .card .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    transition: 0s ease;
  }
  .card .card-info .card-info-container {
    width: 100%;
    height: 80%;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card .card-info .card-info-container .product-price {
    transition: 0s ease;
    display: flex;
  }
  .card .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .add-basket-btn {
    display: none;
  }
  .card:hover {
    background-color: white;
    filter: none;
    transition: 0s ease;
    cursor: pointer;
  }
  .card:hover .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card:hover .card-info {
    width: 100%;
    height: 82px;
    display: flex;
    justify-content: start;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-category {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-category span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Second */
    color: #767676;
  }
  .card:hover .card-info .card-info-container .product-price {
    transition: 0s ease;
    position: relative;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price {
    transition: 0s ease;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .add-basket-btn {
    display: none;
  }
  .about {
    width: 100%;
    margin-top: 65px;
  }
  .about .about-container {
    width: 100%;
    margin: auto;
    height: 500px;
    display: flex;
    justify-content: space-between;
  }
  .about .about-container .about-left {
    width: 50%;
    height: 100%;
  }
  .about .about-container .about-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about-container .about-right {
    width: 50%;
    height: 100%;
  }
  .about .about-container .about-right .about-inner {
    width: 90%;
    height: 100%;
    margin: auto;
  }
  .about .about-container .about-right .about-inner .about-logo {
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
  }
  .about .about-container .about-right .about-inner .about-logo img {
    width: 100%;
    height: 100%;
  }
  .about .about-container .about-right .about-inner .about-title {
    width: 100%;
    margin-bottom: 33px;
    display: flex;
    flex-direction: column;
  }
  .about .about-container .about-right .about-inner .about-title span:first-child {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .about .about-container .about-right .about-inner .about-title span:nth-child(2) {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    /* identical to box height */
    text-transform: uppercase;
    /* Color / Red */
    color: #D6001C;
  }
  .about .about-container .about-right .about-inner .about-description {
    width: 100%;
  }
  .about .about-container .about-right .about-inner .about-description span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    /* Color / Second */
    color: #767676;
  }
  .about .about-container .about-right .about-inner .about-more-btn {
    width: 100%;
    margin-top: 23px;
  }
  .about .about-container .about-right .about-inner .about-more-btn a {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .rolex-service {
    width: 80%;
    margin: auto;
    margin-top: 50px;
  }
  .rolex-service .rolex-service-description {
    width: 100%;
    text-align: center;
    display: block;
  }
  .rolex-service .rolex-service-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #4F4F4D;
  }
  .rolex-service .container {
    width: 100%;
    height: 600px;
    margin: auto;
    background-image: none;
    position: relative;
  }
  .rolex-service .container .group {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .rolex-service .container .group .col {
    width: 49%;
    height: 250px;
  }
  .rolex-service .container .group .col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .group .col-end {
    height: 300px;
    width: 100%;
  }
  .rolex-service .container .group .col-end img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .inner {
    display: none;
  }
  .rolex-service .container .overlay {
    display: none;
  }
  .blog {
    width: 80%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
  }
  .blog .container {
    width: 100%;
    margin: auto;
  }
  .blog .container .blog-head {
    width: 100%;
    margin-bottom: 13px;
  }
  .blog .container .blog-head .blog-head-title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: #4F4F4D;
  }
  .blog .container .blog-head .blog-head-description {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog .container .blog-head .blog-head-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #808080;
  }
  .blog .container .blog-slider {
    width: 100%;
    height: 100%;
  }
  .blog .container .blog-slider .blogSlider {
    width: 100%;
    height: 100%;
  }
  .blog-item {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
  }
  .blog-item .item-img .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease;
  }
  .blog-item .item-img .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-item .item-info {
    width: 100%;
    height: calc(100% - 150px);
    margin-top: 13px;
  }
  .blog-item .item-info .info-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .blog-item .item-info .info-head .blog-author span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .info-head .blog-date span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-transform: lowercase;
    color: #5A5A5A;
  }
  .blog-item .item-info .blog-title {
    width: 100%;
    margin-top: 12px;
  }
  .blog-item .item-info .blog-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    /* or 173% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .blog-item .item-info .blog-content {
    width: 100%;
    margin-top: 8px;
  }
  .blog-item .item-info .blog-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* or 171% */
    /* Color / Second */
    color: #767676;
  }
  .blog-item .item-btn {
    width: 100%;
  }
  .blog-item .item-btn a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color/Head */
    color: #4F4F4D;
    position: relative;
  }
  .blog-item .item-btn a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 63.29px;
    height: 2.02px;
    background-color: #4F4F4D;
  }
  .blog-item:hover .img-container {
    width: 100%;
    height: 100%;
    transition: 0s ease-in-out;
  }
  .blog-item:hover .item-btn {
    cursor: pointer;
  }
  .partner {
    width: 80%;
    height: 100%;
    margin: auto;
    margin-top: 45px;
    margin-bottom: 48px;
  }
  .partner .container {
    width: 100%;
    margin: auto;
  }
  .partner .container .partnerSlider {
    width: 100%;
    height: 80px;
  }
  .partner .container .partnerSlider .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .partner .container .partnerSlider .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--footer-bg);
  }
  footer .footer-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: auto;
  }
  footer .footer-container .footer-row {
    width: 100%;
    height: 100%;
  }
  .footer-icons {
    width: 100%;
    height: 441px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 37px;
    background-color: white;
  }
  .footer-icons::after {
    display: none;
  }
  .footer-icons .footer-icons-content {
    width: 100%;
    margin: auto;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: white;
  }
  .footer-icons .footer-icons-content .footer-icons-box {
    width: 50%;
    margin: auto;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 18px;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-left i {
    font-size: 55px;
    color: rgb(0, 0, 0);
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-header {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    /* or 162% */
    text-transform: uppercase;
    /* Color / White */
    color: #000000;
  }
  .footer-icons .footer-icons-content .footer-icons-box .footer-icons-box-right #footer-icons-box-content {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    /* Color / White */
    color: #000000;
  }
  .footer-inner {
    width: 80%;
    margin: auto;
    height: 100%;
    padding-top: 65px;
    padding-bottom: 50px;
    border-bottom: 1px solid white;
    position: relative;
  }
  .footer-inner::after {
    display: none;
  }
  .footer-inner .footer-inner-container {
    width: 100%;
    margin: auto;
    min-height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo {
    width: 140px;
    height: 70px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-logo img {
    width: 100%;
    height: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress {
    width: calc(100% - 300px);
    height: 100%;
    margin-top: 0px;
    margin-bottom: 25px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-adress span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact {
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 22px;
    margin-top: 40px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-contact span {
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    /* or 185% */
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social {
    width: calc(100% - 300px);
    height: 100%;
    margin: auto;
    margin-top: 40px;
    display: flex;
    gap: 50px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-left .footer-inner-left-container .footer-inner-left-social .footer-social-icon-box {
    height: 100%;
    color: white;
    font-size: 18px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center {
    width: 100%;
    height: 100%;
    margin-right: 105px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 34px;
    margin-bottom: 49px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-corporate .footer-inner-corporate-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-shopping .footer-inner-shopping-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-header span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul {
    list-style-type: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-center .footer-inner-help .footer-inner-help-items ul li a {
    text-decoration: none;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-right {
    display: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header {
    width: 100%;
    margin-bottom: 27px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description {
    width: 282px;
    margin-bottom: 15px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 286% */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 14px 21px;
    margin-bottom: 41px;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-subscribe-email .subscribe-email-input-email span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    text-transform: uppercase;
    /* Color/Head */
    color: #4F4F4D;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header {
    width: 100%;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header span {
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height */
    /* Color/Head */
    color: #FFFFFF;
  }
  .footer-inner .footer-inner-container .footer-inner-row .footer-inner-secure-payments .secure-payments-header img {
    margin-top: 11px;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 20px 0;
  }
  .footer-bottom {
    width: 100%;
    height: 100%;
    padding-top: 27px;
    padding-bottom: 33px;
  }
  .footer-bottom .footer-bottom-container {
    width: 80%;
    margin: auto;
    min-height: 13px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left {
    width: 49px;
    height: 12px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-left img {
    width: 100%;
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right {
    height: 100%;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 19px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover {
    cursor: pointer;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language:hover .footer-right-language-chooser {
    display: block;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language i {
    margin-left: 10px;
    font-size: 13px;
    color: white;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser {
    height: 80px;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 9999;
    left: -10px;
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
    justify-content: space-between;
    display: none;
    background-color: var(--card-hover-basket-btn-bg);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a {
    text-decoration: none;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 36px;
    /* Color / White */
    color: #FFFFFF;
  }
  .footer-bottom .footer-bottom-container .footer-bottom-row .footer-bottom-right .footer-bottom-right-container .footer-right-language .footer-right-language-chooser a:hover {
    color: goldenrod;
  }
  .category-products {
    width: 100%;
    margin-top: 70px;
  }
  .category-products .category-products-container {
    width: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    position: fixed;
    padding: 100px 0;
    top: 0px;
    left: 0;
    z-index: 999999;
    display: none;
    animation: ShowSidebar 0.2s ease-in;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header {
    display: block;
    width: 100%;
    height: 82px;
    background-color: #FAF9F8;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i {
    font-size: 16px;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header .small-fixed-sidebar-container i:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-row .category-products-right {
    width: 100%;
    margin: auto;
  }
  @keyframes ShowSidebar {
    0% {
      width: 0;
    }
    25% {
      width: 25%;
    }
    50% {
      width: 50%;
    }
    75% {
      width: 75%;
    }
    100% {
      width: 100%;
    }
  }
  .fixed-sidebar {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .page-slider {
    width: 100%;
    height: 350px;
    background-color: var(--category-products-slider-bg);
    position: relative;
  }
  .page-slider .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-slider .swiper .swiper-pagination {
    display: none;
  }
  .page-slider .swiper .swiper-slide {
    width: 100% !important;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-slider .swiper .swiper-slide .slider-container {
    width: 90%;
    height: 80%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title {
    width: 70%;
    text-align: left;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    /* or 143% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-content .slider-content-text {
    margin-top: 15px;
    width: 100%;
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    /* or 171% */
    text-align: left;
    /* Color/Head */
    color: #4F4F4D;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img {
    width: 60%;
    height: 100%;
  }
  .page-slider .swiper .swiper-slide .slider-container .slider-row .slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-slider .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }
  .page-slider .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
  .filter-top {
    width: 95%;
    margin: auto;
    height: 24px;
    margin-top: 34px;
    margin-bottom: 30px;
  }
  .filter-top .filter-top-container {
    width: 100%;
    height: 100%;
  }
  .filter-top .filter-top-container .filter-top-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-left {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter i {
    font-size: 14px;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .section-filter span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin-left: 10px;
    color: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser {
    height: 100%;
    margin-right: 0px;
    position: relative;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4F4F4D;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .category-chooser select {
    border: none;
    outline: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .divider {
    display: none;
  }
  .filter-top .filter-top-container .filter-top-row .filter-top-right .products-all-page {
    display: none;
  }
  .list {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .category-products-pagination {
    display: none;
  }
  .product-view {
    width: 100%;
    margin-top: 70px;
  }
  .product-view .product-view-container {
    width: 100%;
    margin: auto;
  }
  .product-view .product-view-container .product-details {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view .product-view-container .product-details .product-details-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    /* Modal Content (image) */
  }
  .modal .modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 95%;
    /* The Close Button */
  }
  .modal .modal-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal .modal-content .close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 99;
  }
  .modal .modal-content .close:hover, .modal .modal-content .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  .product-gallery {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .product-gallery .main-product-img {
    width: 75%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery .main-product-img .mainProductImg {
    height: 100%;
    width: 100%;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery .main-product-img .mainProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-gallery .main-product-img .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .main-product-img .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery .main-product-img .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery .thumbnail-product-img {
    width: 20%;
    margin: auto;
    height: 550px;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg {
    width: 100%;
    height: 100%;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide {
    width: 100%;
    height: 25%;
    opacity: 0.4;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-gallery .thumbnail-product-img .thumbnailProductImg .swiper-slide-thumb-active {
    opacity: 1;
  }
  .product-info {
    width: 80%;
    margin: auto;
  }
  .product-breadcrumb {
    display: none;
  }
  .product-info-content {
    width: 100%;
    margin-top: 30px;
  }
  .product-info-content .product-name {
    width: 100%;
  }
  .product-info-content .product-name span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 7px;
  }
  .product-info-content .product-price span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-price i {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .product-description {
    width: 100%;
    margin-top: 25px;
  }
  .product-info-content .product-description span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-info-content .select-size {
    display: none;
  }
  .product-info-content .product-colors {
    display: none;
  }
  .product-info-content .product-count-selector {
    width: 100%;
    margin-top: 30px;
    display: flex;
  }
  .product-info-content .product-count-selector .product-quantity {
    width: 115px;
    height: 60px;
    border: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-minus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    text-align: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-webkit-inner-spin-button {
    display: none;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::-moz-placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-input input::placeholder {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-quantity .quantity-plus span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /* Color/Second */
    color: #767676;
  }
  .product-info-content .product-count-selector .product-add-cart {
    width: 300px;
    height: 60px;
    background-color: #4F4F4D;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-info-content .product-count-selector .product-add-cart a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .product-review {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container {
    width: 80%;
    margin: auto;
  }
  .product-review .product-review-container .nav-tabs {
    width: 100%;
    height: 27px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .product-review .product-review-container .nav-tabs .tab {
    position: relative;
  }
  .product-review .product-review-container .nav-tabs .tab:hover {
    cursor: pointer;
  }
  .product-review .product-review-container .nav-tabs .tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4F4F4D;
  }
  .product-review .product-review-container .nav-tabs .tab span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container {
    width: 100%;
    height: 100%;
  }
  .product-review .product-review-container .tab-content-container .tab-content {
    width: 100%;
    display: none;
  }
  .product-review .product-review-container .tab-content-container .tab-content h3 {
    font-family: "Jost";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* Color/Head */
    color: #4F4F4D;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* or 214% */
    /* Color/Head */
    color: #4F4F4D;
  }
  .product-review .product-review-container .tab-content-container .tab-content ul {
    list-style: none;
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .product-review .product-review-container .tab-content-container .tab-content.active {
    display: block;
  }
  .related-product {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 100px;
  }
  .related-product .related-product-container {
    width: 80%;
    margin: auto;
  }
  .related-product .related-product-container .related-product-head {
    width: 100%;
    margin-bottom: 50px;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title {
    width: 100%;
    display: flex;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-head .related-product-head-title span:nth-child(2) {
    font-family: "Jost";
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .related-product .related-product-container .related-product-slider {
    width: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper {
    width: 100%;
    height: 100%;
  }
  .related-product .related-product-container .related-product-slider .relatedProductSlider .swiper .swiper-slide {
    width: 100%;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-view-index2 {
    width: 100%;
    margin-top: 70px;
  }
  .product-view-index2 .product-view-container-index2 {
    width: 100%;
    margin: auto;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 {
    width: 100%;
    margin-bottom: 110px;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 .product-details-container-index2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-gallery-index2 {
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 58%;
    height: 550px;
    margin-bottom: 10px;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 {
    height: 100%;
    width: 100%;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-gallery-index2 .main-product-img-index2 .mainProductImgIndex2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-prev::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next {
    width: 45px;
    height: 45px;
    background-color: white;
    font-size: 6px;
    border-radius: 50%;
  }
  .product-gallery-index2 .main-product-img-index2 .swiper-button-next::after {
    font-size: 12px;
    color: #767676;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 {
    width: 40%;
    height: 550px;
    overflow-x: hidden;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 {
    width: 100%;
    height: 100%;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper .swiper-slide {
    width: 50%;
    height: 49%;
    opacity: 0.4;
    background-color: white;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 .thumbnailProductImgIndex2 .swiper-wrapper .swiper-slide-thumb-active {
    opacity: 1;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1280px) {
  .small-header {
    display: none;
  }
  .header-slider {
    width: 100%;
    height: 770px;
    position: relative;
  }
  .header-slider .swiper {
    width: 100%;
    height: 730px;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    font-family: "Montserrat";
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
    width: 158px;
    height: 40px;
    margin: auto;
    font-style: normal;
    font-family: var(--font-Montserrat);
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
  }
  .header-slider .swiper-pagination {
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
  }
  .header-search-box-container {
    width: 100%;
  }
  .header-search-box-container .header-search-box-content {
    width: 90%;
  }
  .popular {
    width: 100%;
    margin-top: 65px;
  }
  .popular .popular-container {
    width: 90%;
    margin: auto;
  }
  .new-product {
    width: 100%;
    margin-top: 65px;
  }
  .new-product .new-product-container {
    width: 90%;
    margin: auto;
  }
  .about {
    width: 100%;
    margin-top: 65px;
  }
  .about .about-container {
    width: 100%;
    margin: auto;
    height: 500px;
    display: flex;
    justify-content: space-between;
  }
  .about .about-container .about-left {
    width: 50%;
    height: 100%;
  }
  .about .about-container .about-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about-container .about-right {
    width: 50%;
    height: 100%;
  }
  .about .about-container .about-right .about-inner {
    width: 80%;
    margin: auto;
    height: 100%;
  }
  .rolex-service {
    width: 100%;
    margin-top: 90px;
  }
  .rolex-service .rolex-service-description {
    display: none;
  }
  .rolex-service .container {
    width: 100%;
    height: 700px;
    background-image: url(../../images/homePage/rolex-service/reseption3.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
  }
  .rolex-service .container .group {
    width: 100%;
    height: 270px;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: space-between;
  }
  .rolex-service .container .group .col {
    width: 380px;
    height: 100%;
  }
  .rolex-service .container .group .col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .inner {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(0%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
  }
  .rolex-service .container .inner span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    /* or 160% */
    text-align: center;
    text-transform: capitalize;
    /* Color / White */
    color: #FFFFFF;
  }
  .rolex-service .container .inner a {
    margin-top: 43px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 208px;
    height: 50px;
    background-color: #FFFFFF;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .rolex-service .container .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(89, 89, 89, 0.5);
  }
  .trend-product {
    width: 100%;
    margin-top: 65px;
  }
  .trend-product .container {
    width: 90%;
    margin: auto;
  }
  .blog {
    width: 100%;
    margin-top: 65px;
  }
  .blog .container {
    width: 90%;
    margin: auto;
  }
  .partner {
    width: 100%;
    margin-top: 65px;
  }
  .partner .container {
    width: 90%;
    margin: auto;
  }
  footer {
    width: 100%;
    height: 100%;
    background-color: var(--footer-bg);
  }
  footer .footer-container {
    width: 100%;
    height: 100%;
    min-height: 704px;
    margin: auto;
  }
  footer .footer-container .footer-row {
    width: 90%;
    height: 100%;
    margin: auto;
  }
  .card {
    width: 100%;
    height: auto;
    transition: 0.4s ease;
    position: relative;
  }
  .card .new-badge {
    position: absolute;
    width: 50px;
    height: 30.86px;
    right: 10px;
    top: 10px;
    z-index: 9;
    background-color: red;
  }
  .card .new-badge .new-badge-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card .new-badge .new-badge-container span {
    font-family: "Jost";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    /* Color / White */
    color: #FFFFFF;
  }
  .card .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card .card-info {
    width: 100%;
    height: 87px;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    transition: 0.4s ease;
  }
  .card .card-info .card-info-container {
    width: 93%;
    height: 80%;
    transition: 0.4s ease;
  }
  .card .card-info .card-info-container .product-name {
    transition: 0.4s ease;
  }
  .card .card-info .card-info-container .product-name span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .card-info .card-info-container .product-category {
    transition: 0.4s ease;
  }
  .card .card-info .card-info-container .product-category span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color / Second */
    color: #767676;
  }
  .card .card-info .card-info-container .product-price {
    transition: 0.4s ease;
    display: flex;
  }
  .card .card-info .card-info-container .product-price .discount-price {
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    transition: 0.4s ease;
  }
  .card .card-info .card-info-container .product-price .discount-price span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    text-decoration: line-through;
    /* Color / Second */
    color: #767676;
  }
  .card .card-info .card-info-container .product-price .normal-price {
    transition: 0.4s ease;
  }
  .card .card-info .card-info-container .product-price .normal-price span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card .add-basket-btn {
    display: none;
  }
  .card:hover {
    background-color: white;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    transition: 0.4s ease;
    cursor: pointer;
  }
  .card:hover .card-img-container {
    width: 100%;
    height: auto;
    background-color: var(--card-container-bg);
    display: flex;
    align-items: center;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box {
    width: 100%;
    height: auto;
    background-color: #E7E7E7;
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img {
    width: 100%;
    height: auto;
    transform: translateY(4px);
    transition: 0s ease;
  }
  .card:hover .card-img-container .img-box .card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0s ease;
  }
  .card:hover .card-info {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    transition: 0.4s ease;
  }
  .card:hover .card-info .card-info-container {
    width: 90%;
    height: 100%;
    transform: translateY(16px);
    transition: 0.4s ease;
  }
  .card:hover .card-info .card-info-container .product-name {
    transition: 0.4s ease;
  }
  .card:hover .card-info .card-info-container .product-name span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .product-category {
    transition: 0.4s ease;
  }
  .card:hover .card-info .card-info-container .product-category span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    /* or 185% */
    /* Color / Second */
    color: #767676;
  }
  .card:hover .card-info .card-info-container .product-price {
    transition: 0.4s ease;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price {
    transition: 0.4s ease;
    margin-right: 7px;
    text-decoration: line-through;
    display: flex;
    align-items: center;
  }
  .card:hover .card-info .card-info-container .product-price .discount-price span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    text-decoration: line-through;
    /* Color / Second */
    color: #767676;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price {
    transition: 0.4s ease;
  }
  .card:hover .card-info .card-info-container .product-price .normal-price span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .card:hover .card-info .card-info-container .add-basket-btn {
    transition: 0.4s ease;
    width: 100%;
    height: 40px;
    display: block;
    margin-top: 18px;
  }
  .card:hover .card-info .card-info-container .add-basket-btn button {
    transition: 0.4s ease;
    width: 100%;
    height: 100%;
    background-color: var(--card-hover-basket-btn-bg);
    color: white;
    border: none;
    font-family: var(--font-Montserrat);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    /* identical to box height, or 171% */
    color: #FFFFFF;
  }
  .category-products {
    width: 100%;
    margin-top: 155px;
  }
  .category-products .category-products-container {
    width: 90%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-row {
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-row .category-products-left {
    width: 25%;
  }
  .category-products .category-products-container .category-products-row .category-products-left .small-fixed-sidebar-header {
    display: none;
  }
  .category-products .category-products-container .category-products-row .category-products-right {
    width: 70%;
  }
  .section-filter {
    display: none;
  }
  .list {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 35px;
  }
  .product-view {
    width: 100%;
    margin-top: 155px;
  }
  .product-view .product-view-container {
    width: 100%;
    margin: auto;
  }
  .product-view .product-view-container .product-details {
    width: 90%;
    margin: auto;
    margin-bottom: 110px;
  }
  .product-view .product-view-container .product-details .product-details-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-gallery {
    width: 48%;
  }
  .product-info {
    width: 48%;
  }
  .related-product {
    width: 100%;
    margin-top: 65px;
  }
  .related-product .related-product-container {
    width: 90%;
    margin: auto;
  }
  .product-view-index2 {
    width: 100%;
    margin-top: 155px;
  }
  .product-view-index2 .product-view-container-index2 {
    width: 100%;
    margin: auto;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 {
    width: 90%;
    margin: auto;
    margin-bottom: 110px;
  }
  .product-view-index2 .product-view-container-index2 .product-details-index2 .product-details-container-index2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-gallery-index2 {
    width: 48%;
  }
  .product-gallery-index2 .main-product-img-index2 {
    width: 100%;
  }
  .product-gallery-index2 .thumbnail-product-img-index2 {
    width: 100%;
  }
  .product-info-index2 {
    width: 48%;
  }
}
@media only screen and (max-width: 1599px) and (min-width: 1440px) {
  .small-header {
    display: none;
  }
  .header-slider {
    width: 100%;
    height: 770px;
    position: relative;
  }
  .header-slider .swiper {
    width: 100%;
    height: 730px;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content span {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    font-family: "Montserrat";
  }
  .header-slider .swiper .swiper-wrapper .swiper-slide .slide-content button {
    width: 200px;
    height: 50px;
    margin: auto;
    font-style: normal;
    font-family: var(--font-Montserrat);
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
  }
  .header-slider .swiper-pagination {
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
  }
  .header-search-box-container {
    width: 100%;
  }
  .header-search-box-container .header-search-box-content {
    width: 85%;
  }
  .rolex-service {
    width: 100%;
    margin-top: 90px;
  }
  .rolex-service .rolex-service-description {
    display: none;
  }
  .rolex-service .container {
    width: 100%;
    height: 800px;
    background-image: url(../../images/homePage/rolex-service/reseption3.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
  }
  .rolex-service .container .group {
    width: 90%;
    height: 270px;
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
    justify-content: space-between;
  }
  .rolex-service .container .group .col {
    width: 30%;
    height: 100%;
  }
  .rolex-service .container .group .col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rolex-service .container .inner {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(0%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
  }
  .rolex-service .container .inner span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    /* or 160% */
    text-align: center;
    text-transform: capitalize;
    /* Color / White */
    color: #FFFFFF;
  }
  .rolex-service .container .inner a {
    margin-top: 43px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 208px;
    height: 50px;
    background-color: #FFFFFF;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    /* identical to box height */
    /* Color/Head */
    color: #4F4F4D;
  }
  .rolex-service .container .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(89, 89, 89, 0.5);
  }
}
@media only screen and (min-width: 1600px) {
  .small-header {
    display: none;
  }
  .section-filter {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --font-Montserrat: "Montserrat", sans-serif;
  --font-Jost: "Jost", sans-serif;
  --category-products-slider-bg: #F5E6E0;
  --card-container-bg: #F9F9F9;
  --card-hover-basket-btn-bg: #8D7F30;
  --category-brand-searchbox-border: #E4E4E4;
  --footer-bg: #4F4F4D;
}/*# sourceMappingURL=style.css.map */