@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/fpt5tbz.css");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
}

:root {
  --green-color: #95c12b;
  --orange-color: #ffbe5b;
  --bg-gray: #f9f9f9;
  --white-100: #ffffff;
  --text-gray: #3e3e54;
  --gray-100: #707070;
  --gray-60: #3e3e5499;
  --gray-40: #3e3e5466;
  --black-100: #000000;
  --black-50: #00000050;
  --black-80: #00000080;
  --border-color: #e0e0e0;
  --gray-f3: #f3f3f3;
}

a {
  text-decoration: none;
  color: var(--green-color);
}

input,
select {
  height: 40px;
  width: 100%;
  padding: 8px;
  outline: none;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  color: var(--gray-100);
}

.green-title {
  color: var(--green-color) !important;
}

.gray {
  color: var(--gray-100) !important;
}

.black {
  color: var(--black-100) !important;
}

.bg-gray {
  background-color: var(--bg-gray) !important;
}

.green-btn {
  background-color: var(--green-color);
  color: var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 25px;
  border: none;
  border-radius: 35px;
  border: 1px solid var(--green-color);
}

.green-btn:hover {
  background-color: var(--white-100);
  color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.black-btn {
  background-color: var(--black-100);
  color: var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 30px;
  border: none;
  border-radius: 35px;
  border: 1px solid var(--black-100);
}

.black-btn a {
  text-decoration: none;
  color: var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.black-btn:hover {
  background-color: var(--white-100);
  color: var(--black-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.black-btn:hover a {
  color: var(--black-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.black-btn-sm {
  padding: 6px 20px;
}

.gray-btn {
  padding: 7px 20px;
  background-color: #f2f2f2;
  border: none;
  font-size: 16px;
  color: var(--black-100);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.green-btn-sm {
  padding: 5px 15px;
}

.tsp-btn {
  padding: 5px 15px;
  background-color: transparent;
  border: none;
  color: var(--black-100);
  font-weight: 500;
  font-size: 16px;
}

.tsp-btn-b {
  border: 1px solid var(--black-100);
  border-radius: 50px;
  padding: 5px 20px;
  background-color: transparent;
  color: var(--black-100);
  font-weight: 500;
  font-size: 16px;
}

li {
  list-style: none;
}

.green-color {
  color: var(--green-color);
}

@media screen and (max-width: 576px) {
  .green-btn {
    font-size: 14px;
  }

  .black-btn {
    font-size: 14px;
  }
}

input:focus {
  border-color: var(--green-color) !important;
}

.flatpickr-day.selected {
  background-color: var(--green-color) !important;
  border-color: var(--green-color) !important;
}

.sponsor {
  font-size: 18px;
}

/* todo =================== COMMON-CLASS ===================== */

.heading-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.heading-title h1 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  margin: 0;
}

.heading-title h1::after {
  content: "";
  position: absolute;
  left: 115%;
  top: 25px;
  width: 600px;
  height: 2px;
  background-color: var(--gray-40);
}

.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.arrow .prev-btn,
.arrow .next-btn {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  border: 1px solid var(--text-gray);
  cursor: pointer;
  font-size: 32px;
}

.arrow .prev-btn:hover,
.arrow .next-btn:hover {
  background-color: #eee;
}

.heading-title .right-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.heading-title .right-details .allProduct-btn {
  padding: 10px 20px;
  background-color: var(--white-100);
  border: 1px solid var(--text-gray);
  border-radius: 50px;
  text-transform: uppercase;
  color: var(--black-100);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  text-decoration: none;
}

.heading-title .right-details .allProduct-btn a {
  color: var(--black-100);
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.heading-title .right-details .allProduct-btn:hover {
  background-color: var(--green-color);
  border-color: var(--green-color);
  color: var(--white-100);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.heading-title .right-details .allProduct-btn:hover a {
  color: var(--white-100);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.best-sellers-section .heading-title h1::after {
  width: 500px;
}

@media screen and (max-width: 1440px) {
  .heading-title h1::after {
    width: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .heading-title h1::after {
    width: 350px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 280px;
  }
}

@media screen and (max-width: 991px) {
  .heading-title h1 {
    font-size: 30px;
  }

  .heading-title h1::after {
    width: 120px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .heading-title h1 {
    font-size: 19px;
  }

  .heading-title h1::after {
    top: 10px;
    width: 180px;
    left: 110%;
  }

  .best-sellers-section .heading-title h1::after {
    width: 120px;
  }

  .heading-title .right-details .allProduct-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .arrow .prev-btn,
  .arrow .next-btn {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 26px;
  }
}

@media screen and (max-width: 576px) {
  .heading-title h1 {
    font-size: 17px;
  }

  .heading-title h1::after {
    width: 160px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 145px;
  }
}

@media screen and (max-width: 500px) {
  .arrow {
    display: none;
  }

  .heading-title h1::after {
    width: 160px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 145px;
  }
}

@media screen and (max-width: 420px) {
  .heading-title h1::after {
    width: 130px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 125px;
  }
}

@media screen and (max-width: 400px) {
  .best-sellers-section .heading-title h1::after {
    width: 110px;
  }
}

@media screen and (max-width: 390px) {
  .heading-title h1::after {
    width: 110px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 90px;
  }
}

@media screen and (max-width: 375px) {
  .heading-title h1::after {
    width: 100px;
  }

  .best-sellers-section .heading-title h1::after {
    width: 85px;
  }
}

/* todo =================== NAVBAR-SECTION ===================== */

header {
  position: relative;
  top: 0;
  background-color: var(--bg-gray);
  z-index: 999;
}

.navbar-section {
  background-color: var(--bg-gray);
  padding: 15px 40px;
  border-bottom: 1px solid var(--gray-40);
}

.gotocart,
.returntocart {
  text-decoration: none;
  color: var(--black-100);
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 450;
  gap: 0px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.returntocart i {
  font-size: 26px;
}

.gotocart:hover,
.returntocart:hover {
  color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.input-box {
  display: none;
}

.navbar-section .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .all {
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  color: var(--text-gray);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

header .customize-sec {
  position: fixed;
  left: -100%;
  max-width: 300px;
  top: 0;
  display: block;
  background-color: var(--white-100);
  overflow-y: auto;
  height: 100%;
  z-index: 999999999;
  padding: 20px 10px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-top: 50px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

header .customize-sec::-webkit-scrollbar {
  display: none;
}

header .customize-sec li,
header .customize-sec button {
  font-size: 14px;
  padding: 7px 12px;
}

header .customize-sec .group-list .list-body .ct-img {
  display: none;
}

header .customize-sec .close-menu {
  font-size: 26px;
  font-weight: 500;
  position: absolute;
  right: 8px;
  top: 8px;
  color: var(--gray-100);
  cursor: pointer;
}

header .all i {
  font-size: 28px;
  font-weight: 600;
}

header .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 15px;
  border: 1px solid var(--gray-60);
  border-radius: 40px;
  height: 45px;
}

header .input-wrapper input {
  outline: none;
  border: none;
  background-color: transparent;
}

header .input-wrapper i {
  font-size: 20px;
  color: var(--gray-60);
  cursor: pointer;
}

header .logo {
  width: 170px;
  position: relative;
  /* left: -100px; */
}

.navbar-section .logo img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.navbar-section .country {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.navbar-section .country img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

header .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 40px;
  position: relative;
  background-color: var(--bg-gray);
  border-bottom: 1px solid var(--gray-40);
}

header .menu-item .navbar-menu {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

header header .menu-item ul {
  margin: 0;
  padding: 0;
}

header .menu-item .nav-list .main-listed-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item .nav-list li {
  padding: 10px 10px;
  position: relative;
}

.menu-item .nav-list li a {
  color: var(--black-100);
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-item .nav-list li a i {
  font-size: 28px;
}

.menu-item .right-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-item .right-items a {
  text-decoration: none;
}

.sign-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black-100);
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sign-in span {
  font-size: 16px;
}

#myAccountDetails {
  position: absolute;
  background-color: var(--white-100);
  padding: 20px 15px;
  width: 360px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 12px;
  left: -180%;
  top: 140%;
  display: none;
  -webkit-animation: fadeing 0.3s ease;
  animation: fadeing 0.3s ease;
  height: 530px;
  overflow-y: auto;
  scrollbar-width: thin;
  z-index: 99999999999;
}

#myAccountDetails.block {
  display: block;
}

#myAccountDetails .u-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background-color: #eee;
  padding: 20px 20px;
  border-radius: 8px;
}

#myAccountDetails .u-info .img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
  outline-offset: 5px;
  outline: 3px solid var(--green-color);
}

#myAccountDetails .u-info .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#myAccountDetails .u-details .name-or-num {
  font-size: 22px;
  font-weight: 500;
}

#myAccountDetails .u-details .digit {
  font-weight: 400;
  font-size: 18px;
}

#myAccountDetails .acc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  font-weight: 400;
}

#myAccountDetails .acc-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

#myAccountDetails .acc-item .icon svg {
  height: 26px;
  width: 26px;
}

#myAccountDetails .acc-item .icon svg path {
  fill: var(--gray-40);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

#myAccountDetails .acc-item:hover {
  color: var(--green-color);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

#myAccountDetails .acc-item:hover svg path {
  fill: var(--green-color);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

#myAccountDetails .acc-item span {
  font-size: 18px;
}

.sign-in .icon {
  height: 40px;
  width: 40px;
  background-color: var(--black-100);
  color: var(--white-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.sign-in .icon svg path,
.sign-in .icon svg circle {
  fill: var(--white-100);
}

.sign-in .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

header .shoping-cart {
  position: relative;
}

.shoping-cart .total-prd {
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--green-color);
  color: var(--white-100);
  font-weight: 500;
  font-size: 13px;
  border-radius: 50%;
  position: absolute;
  right: -4px;
  top: -10px;
}

.mobile-items {
  display: none;
}

.menu-item .nav-list li:hover .sub-list {
  display: block;
}

.menu-item .sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--white-100);
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 10px 15px;
  border-radius: 8px;
  display: none;
  position: absolute;
  top: 52px;
  left: -5px;
  width: 260px;
  -webkit-animation: fadeing 0.3s ease;
  animation: fadeing 0.3s ease;
  z-index: 99999;
}

@-webkit-keyframes fadeing {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@keyframes fadeing {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}

.menu-item .sub-list li {
  padding: 0;
  margin: 0;
}

.menu-item .sub-list li a {
  font-size: 19px;
  text-transform: capitalize;
  font-weight: 400 !important;
  padding: 6px 5px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.menu-item .sub-list li a:hover {
  color: var(--green-color);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.menu-item .bigger-sublist {
  width: 1100px;
  padding: 30px 50px;
}

.menu-item .bigger-sublist .list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.menu-item .bigger-sublist .list-header .item {
  font-size: 24px;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

.menu-item .bigger-sublist .list-header .item.active {
  color: var(--green-color);
}

.menu-item .bigger-sublist .list-header .item.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background-color: var(--green-color);
}

.menu-item .bigger-sublist .list-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.menu-item .list-content {
  display: none;
  width: 100%;
}

.menu-item .list-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.menu-item .bigger-sublist h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
}

.menu-item .bigger-sublist .list-body li a {
  font-weight: 400;
}

#closeBtn {
  display: none;
}

/* ? ~~~~~~~~~~ OFFCANVAS FOR COUNTRY LIST ~~~~~~~~~ */

#countryList.offcanvas {
  width: 350px;
}

#countryList h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-100);
  line-height: 1.2;
  text-transform: uppercase;
}

#countryList .offcanvas-header {
  padding: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-60);
}

#countryList .offcanvas-body {
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

#countryList .cn-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid var(--gray-60);
  text-decoration: none;
  color: var(--black-100);
  cursor: pointer;
}

#countryList .cn-item .cn-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#countryList .cn-item .cn-img {
  height: 22px;
  width: 25px;
  overflow: hidden;
}

#countryList .cn-item .cn-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#countryList .cn-item .cn-name {
  font-size: 17px;
  font-weight: 500;
}

#countryList .cn-arrow {
  font-size: 24px;
}

/* Select Language */

.selectLanguage {
  position: fixed;
  width: 350px;
  height: 100%;
  right: -100%;
  top: 0;
  padding: 0;
  padding-top: 15px;
  background-color: var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
}

.selectLanguage .back-btn {
  font-size: 22px;
  color: #318bdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}

.selectLanguage .back-btn i {
  font-size: 28px;
}

.selectLanguage .lang-item {
  margin-top: 0px;
  padding: 15px 15px;
  border-top: 1px solid var(--gray-40);
  color: #318bdb;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

.selectLanguage .lang-item:last-child {
  border-bottom: 1px solid var(--gray-40);
}

/* todo ~~~~~~~~~~~~~~~~ CUSTOMIZE-SEC (ALL ITEM ) ~~~~~~~~~~~~~~~~~~ */

/* Customize-sec */
.customize-sec button {
  font-size: 16px;
}

.customize-sec .group-list {
  padding: 10px 20px;
  background-color: #f2f2f2;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  font-size: 16px;
  color: var(--black-100);
}

.customize-sec .group-list .header {
  max-height: 32px;
  cursor: pointer;
}

.customize-sec .group-list .header .arrow i {
  font-size: 26px;
  font-weight: 500;
}

.customize-sec .group-list .list-body li {
  padding: 8px 12px;
  border-top: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}

.customize-sec .group-list .list-body {
  overflow: hidden;
  max-height: 0px;
  padding: 0;
  -webkit-transition: max-height 0.3s ease-out;
  -o-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}

.group-list.activeList .list-body {
  max-height: 400px !important;
}

.customize-sec .input-bullet {
  height: 10px;
  width: 10px;
  outline-offset: 4px;
  outline: 2px solid var(--gray-40);
  background-color: #dadada;
  border-radius: 50%;
  cursor: pointer;
}

.customize-sec .list-nm {
  width: calc(100% - 25px);
}

.active-bullet {
  background-color: var(--green-color) !important;
  outline-color: var(--green-color) !important;
}

/* TODO ~~~~~~~~~~~~~~~~ PV RANGE LINE ~~~~~~~~~~~~~~~~~ */

.slider-container {
  position: relative;
  width: 70%;
  top: 3px;
  margin-top: 5px;
}

.range-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 13px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(100%, var(--green-color)),
    color-stop(0%, transparent)
  );
  background: -o-linear-gradient(left, var(--green-color) 100%, transparent 0%);
  background: linear-gradient(
    to right,
    var(--green-color) 100%,
    transparent 0%
  );
  border: 1px solid transparent;
  border-radius: 15px;
  outline: none;
  position: relative;
  top: -4px;
}

.range-line .tt-dsc,
.range-line .myPv {
  font-size: 14px;
}

.range-slider-80 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 13px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(80%, var(--green-color)),
    color-stop(20%, transparent)
  );
  background: -o-linear-gradient(left, var(--green-color) 80%, transparent 20%);
  background: linear-gradient(
    to right,
    var(--green-color) 80%,
    transparent 20%
  );
  border: 1px solid;
  border-radius: 15px;
  outline: none;
  position: relative;
  top: -4px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--green-color);
  border: 3.8px solid var(--white-100);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  position: relative;
  right: -5px;
  -webkit-box-shadow: 0px 0px 7px #000a;
  box-shadow: 0px 0px 7px #000a;
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: var(--green-color);
  border: 3.8px solid var(--white-100);
  border-radius: 50%;
  cursor: pointer;
}

.range-slider::-ms-thumb {
  width: 20px;
  height: 20px;
  background-color: var(--green-color);
  border: 3.8px solid var(--white-100);
  border-radius: 50%;
  cursor: pointer;
}

.myPv {
  font-size: 16px;
  color: var(--gray-100);
  text-transform: uppercase;
}

.tt-dsc {
  font-size: 16px;
  color: var(--gray-100);
}

#tooltip {
  position: absolute;
  top: -28px;
  left: 80%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  color: var(--gray-100);
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 22;
}

.shopby-menu {
  display: none;
}

@media screen and (max-width: 576px) {
  .gotocart,
  .returntocart {
    font-size: 16px;
  }

  .returntocart i {
    font-size: 20px;
  }

  #countryList.offcanvas {
    width: 250px;
  }

  #countryList h4 {
    font-size: 20px;
  }

  #countryList .cn-item {
    gap: 2px;
    padding: 10px 12px;
  }

  #countryList .cn-item .cn-img {
    width: 18px;
  }

  #countryList .cn-item .cn-img img {
    -o-object-fit: contain;
    object-fit: contain;
  }

  #countryList .cn-item .cn-name {
    font-size: 15px;
    font-weight: 500;
  }

  #countryList .cn-arrow {
    font-size: 18px;
  }

  .customize-sec .group-list .header .name {
    font-size: 14px;
  }

  /* Select-language */

  .selectLanguage {
    position: fixed;
    width: 250px;
  }
}

@media screen and (max-width: 1200px) {
  .menu-item .nav-list li a {
    color: var(--black-100);
    font-weight: 500;
    font-size: 19px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-item .nav-list li a i {
    font-size: 22px;
  }

  .menu-item .bigger-sublist {
    width: 90vw;
    padding: 20px 30px;
  }

  .menu-item .bigger-sublist .list-header .item {
    font-size: 20px;
  }

  .menu-item .bigger-sublist .list-body {
    padding: 30px 10px;
    padding-top: 30px;
  }

  .menu-item .bigger-sublist h4 {
    font-size: 18px;
  }

  .bigger-sublist.without-header .list-body {
    padding: 0px;
    padding: 0px;
  }

  .bigger-sublist.without-header {
    width: 55vw;
  }

  .bigger-sublist.without-header {
    left: -42vw;
  }
}

@media screen and (max-width: 991px) {
  body {
    overflow-x: hidden;
    position: relative;
    height: 100%;
  }

  .navbar-section .nav .logo {
    width: 120px;
  }

  .sign-in span {
    display: none;
  }

  .menu-item .right-items svg {
    height: 30px;
    width: 30px;
  }

  .menu-item .right-items .shoping-cart .total-prd {
    font-size: 12px;
  }

  #myAccountDetails {
    width: 380px;
    left: -300px;
  }

  #myAccountDetails .u-details .name-or-num {
    font-size: 20px;
  }

  #myAccountDetails .acc-item span {
    display: inline-block;
  }

  .menu-item .navbar-menu .nav-list {
    display: none;
  }

  header .menu-item {
    display: none;
  }

  header .menu-item-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 12px;
    position: relative;
    background-color: var(--bg-gray);
    border-bottom: 1px solid var(--gray-40);
  }

  .navbar-section {
    padding: 10px 12px;
  }

  .back-home-mb a {
    text-decoration: none;
    color: var(--black-100);
    font-weight: 500;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .back-home-mb a i {
    font-size: 24px;
  }

  .dashboard-menu {
    cursor: pointer;
  }

  .shopby-menu {
    position: fixed;
    width: 100%;
    height: calc(100% - 55px);
    background-color: var(--white-100);
    z-index: 999999;
    right: 0;
    top: 55px;
    padding-top: 50px;
    overflow-y: auto;
    padding-bottom: 30px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-animation: fading 0.3s ease;
    animation: fading 0.3s ease;
    display: none;
    border-radius: 4px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  @-webkit-keyframes fading {
    0% {
      opacity: 0;
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
    }
  }

  @keyframes fading {
    0% {
      opacity: 0;
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
    }
  }

  .shopby-menu .close-btn {
    font-size: 26px;
    font-weight: 600;
    color: var(--gray-100);
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 55;
    cursor: pointer;
  }

  .shopby-menu .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-gray);
    width: auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .shopby-menu .products::-webkit-scrollbar {
    display: none;
  }

  .shopby-menu .products .products-item {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
  }

  .shopby-menu .products .products-item img {
    width: 120px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .shopby-menu .products .products-item span {
    font-size: 14px;
    color: var(--gray-100);
    width: 100px;
  }

  .shopby-menu .products .products-item .icon {
    height: 40px;
    width: 40px;
    background-color: var(--black-100);
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }

  .shopby-menu .products .products-item .icon img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .shopby-menu .products .products-item span {
    line-height: 1.1;
  }

  .shopby-menu .categories li {
    margin-top: 8px;
  }

  .shopby-menu .categories li a {
    text-decoration: none;
    color: var(--black-100);
    font-size: 16px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
  }

  .shopby-menu .categories li a:hover {
    color: var(--green-color);
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
  }

  .shopby-menu .categories .list-header {
    padding: 0px 0px;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .shopby-menu .categories .acr-body {
    padding: 0px 40px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-out;
    -o-transition: max-height 0.3s ease-out;
    transition: max-height 0.3s ease-out;
  }

  .shopby-menu .categories .acr-body.show {
    max-height: 200px;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
  }

  /* Arrow rotation */
  .list-header.active .arrows i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }

  .arrows i {
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    display: inline-block;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    -ms-transition: transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
  }
}

@media screen and (max-width: 576px) {
  #myAccountDetails {
    width: 85vw;
    left: -70vw;
  }

  .navbar-section .nav .logo {
    width: 90px;
  }

  #myAccountDetails .u-info {
    gap: 12px;
    padding: 15px 10px;
    border-radius: 8px;
  }

  #myAccountDetails .u-info .img {
    height: 45px;
    width: 45px;
    outline-offset: 4px;
    outline: 2px solid var(--green-color);
  }

  .menu-item .navbar-menu {
    padding: 12px;
  }

  #myAccountDetails .u-details .digit {
    font-weight: 400;
    font-size: 16px;
  }

  #myAccountDetails .acc-item span {
    font-size: 17px;
    display: inline-block;
  }

  /* Country Circly */
  .navbar-section .nav .country {
    height: 32px;
    width: 32px;
  }

  .sign-in .icon {
    height: 34px;
    width: 34px;
  }

  .sign-in .icon svg {
    height: 20px;
    width: 20px;
  }

  .menu-item-phone .all-with-search {
    width: calc(100% - 12%);
  }

  .menu-item-phone .all-with-search .search {
    width: 100%;
  }

  .menu-item-phone .all-with-search input {
    font-size: 16px;
    width: 100%;
    display: inline-block;
  }

  header .input-wrapper {
    width: 100%;
    padding: 4px 10px;
  }

  header .customize-sec {
    max-width: 65%;
  }
}

@media screen and (max-width: 480px) {
  .menu-item .sub-list h4 {
    font-size: 16px;
  }

  .menu-item .sub-list li a {
    font-size: 15px;
  }
}

@media screen and (max-width: 400px) {
  #myAccountDetails {
    width: 90vw;
    left: -68vw;
  }
}
/* todo =================== HERO-SECTION ===================== */

.hero-section {
  background-color: var(--bg-gray);
  overflow: hidden;
  position: relative;
}

.hero-section .container {
  position: relative;
}

/* ? Subtotal Black card */
.subtotal-card {
  border-radius: 8px;
  background-color: var(--black-100);
  color: var(--white-100);
  padding: 12px 15px;
  font-size: 16px;
  gap: 20px;
  font-weight: 420;
  position: absolute;
  top: 105%;
  right: 12px;
  z-index: 999;
}

.subtotal-card a {
  text-decoration: none;
  color: var(--green-color);
  position: relative;
}

.subtotal-card a::after {
  content: "";
  height: 1px;
  top: 20px;
  left: 0;
  width: 0%;
  position: absolute;
  background-color: var(--green-color);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.subtotal-card a:hover::after {
  width: 100%;
}

.subtotal-with-close {
  gap: 20px;
  top: 140%;
  display: none;
}

.shoppage-new .subtotal-with-close {
  gap: 20px;
  top: 110%;
  display: none;
}

@-webkit-keyframes zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.subtotal-with-close.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: zoomin 0.3s ease;
  animation: zoomin 0.3s ease;
}

.subtotal-card .close-subtotal {
  cursor: pointer;
}

.hero-section .left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-section .title {
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  color: var(--black-100);
}

.hero-section .desc {
  font-family: "Roboto", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-gray);
  margin-top: 10px;
}

.hero-section .btn-sec {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.hero-section .btn-sec button {
  padding: 10px 20px;
  font-size: 22px;
  border-radius: 40px;
}

.hero-section .btn-sec .shop-btn {
  background-color: var(--green-color);
  color: var(--white-100);
  border: 1px solid var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero-section .btn-sec .shop-btn:hover {
  background-color: var(--white-100);
  color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero-section .btn-sec .register-btn {
  background-color: var(--white-color);
  color: var(--text-gray);
  border: 1px solid var(--text-gray);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero-section .right-img {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hero-section .right-img .green-leaf {
  position: relative;
  width: 700px;
}

.hero-section .right-img .green-leaf img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-section .right-img .person-img {
  width: 470px;
  height: auto;
  position: absolute;
  left: 15%;
  bottom: 0;
}

.hero-section .right-img .person-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .hero-section .title {
    font-size: 64px;
    line-height: 1.1;
  }

  .hero-section .desc {
    font-size: 19px;
  }

  .hero-section .right-img .green-leaf {
    position: relative;
    width: 100%;
  }

  .hero-section .right-img .person-img {
    width: 400px;
    height: 480px;
  }

  .hero-section .btn-sec button {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .hero-section .hero-content {
    padding-top: 80px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-section .btn-sec {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-section .hero-content .right-img {
    margin-top: 50px;
  }

  .hero-section .hero-content .right-img .green-leaf {
    width: 100%;
  }

  .hero-section .right-img .person-img {
    width: auto;
    height: 550px;
  }
}

@media screen and (max-width: 768px) {
  .hero-section .right-img .person-img {
    width: auto;
    height: 85%;
  }

  .hero-section .right-img .person-img img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (max-width: 576px) {
  .hero-section .hero-content {
    padding-top: 100px;
  }

  /* ? Subtotal Black card */
  .subtotal-card {
    font-size: 14px;
    padding: 10px 10px;
  }

  .hero-section .title {
    font-size: 36px;
  }

  .hero-section .desc {
    font-size: 16px;
    width: 70%;
  }

  .hero-section .left-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-section .hero-content .right-img {
    margin-top: 30px;
  }

  .hero-section .hero-content .right-img .green-leaf {
    width: 100%;
  }

  .hero-section .right-img .person-img {
    width: auto;
    height: 80%;
  }

  .hero-section .btn-sec button {
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .hero-section .right-img .person-img {
    height: 85%;
  }
}

/* todo =================== PRODUCT-GRID-SECTION ===================== */

.product-grid {
  padding: 60px 0px;
}

.product-grid .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 10px;
}

.product-grid .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-grid .grid-item .img {
  height: 70px;
  width: 70px;
  overflow: hidden;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--black-100);
}

.product-grid .grid-item .grid-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-grid .grid-item .grid-details .name {
  font-family: "Roboto", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.product-grid .grid-item .grid-details .desc {
  font-family: "Roboto", serif;
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .product-grid .grid-item .img {
    height: 60px;
    width: 60px;
  }

  .product-grid .grid-item .grid-details .name {
    font-size: 16px;
  }

  .product-grid .grid-item .grid-details .desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 1020px) {
  .product-grid .grid-item .img {
    height: 45px;
    width: 45px;
  }

  .product-grid .grid-item .img img {
    height: 25px;
    width: 20px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .product-grid .grid-item .grid-details .name {
    font-size: 14px;
  }

  .product-grid .grid-item .grid-details .desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .product-grid .grid-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .product-grid .grid-item .grid-details {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .product-grid {
    padding: 60px 0px;
  }

  .product-grid .container {
    gap: 10px 5px;
  }

  .product-grid .grid-item .grid-details .desc span {
    display: none;
  }
}

/* todo =================== FEATURED-SECTION ===================== */

.featured-section {
  padding: 80px 0px;
}

.product-slider,
.benefits-slider,
.sellers-slider {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.slick-list {
  padding: 40px 0px;
  padding-bottom: 80px;
}

.product-item {
  border-radius: 4px;
  border: 1px solid transparent;
  width: 100%;
}

.slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.slick-slide > div {
  width: 100% !important;
}

.product-slider::-webkit-scrollbar,
.benefits-slider::-webkit-scrollbar,
.sellers-slider::-webkit-scrollbar {
  display: none;
}

.product-item .product-header {
  position: relative;
  text-align: center;
  padding: 5px;
  overflow: hidden;
  background-color: var(--white-100);
}

/* ! ~~~~~~~~~ PRODUCT_PAGE ~~ ~~~~~~ */
.product_page .product-item {
  border-radius: 4px;
  border: 1px solid transparent;
  height: 420px !important;
  width: 100%;
}

.product_page .product-item .product-header {
  height: 43%;
}

@media screen and (max-width: 576px) {
  .product_page .product-item {
    border-radius: 4px;
    border: 1px solid transparent;
    height: 380px !important;
  }

  .product_page .product-item .product-details {
    padding: 10px 20px !important;
  }
}

.product-item .product-header .cart {
  height: 60px;
  width: 60px;
  background-color: var(--green-color);
  color: var(--white-100);
  border: 1px solid var(--green-color);
  overflow: hidden;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 40px;
  bottom: 20px;
  cursor: pointer;
}

.product-item .product-header .cart i {
  font-size: 34px;
}

.product-item .product-header .product-img {
  width: 100%;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
}

.product-item .product-header .product-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  margin: 0 auto;
}

.product-item .product-details {
  padding: 15px;
  width: 100%;
  text-align: center;
}

.product-item .product-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--black-100);
}

.product-item p {
  font-size: 18px;
  color: var(--gray-100);
}

.product-item .prefered-price {
  font-size: 16px;
  color: var(--gray-60);
}

.product-item .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-item .price .new-price {
  color: var(--black-100);
  font-size: 26px;
  font-weight: 500;
}

.slick-slide {
  margin: 0 10px;
}

.slick-dots {
  bottom: -35px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-gray);
  opacity: 0.3;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media screen and (max-width: 450px) {
  .product_page .product-item {
    border-radius: 4px;
    border: 1px solid transparent;
    height: 350px !important;
  }
}

@media screen and (max-width: 576px) {
  .featured-section {
    padding: 40px 0px;
  }

  .product-item .product-header {
    padding: 10px;
  }

  .product-item .product-header .product-img {
    height: 120px;
    width: 120px;
  }

  .product-item .product-header img {
    height: 60%;
    width: 60%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .product-item .product-header .cart {
    height: 35px;
    width: 35px;
    right: 20px;
    bottom: 20px;
  }

  .product-item .product-header .cart i {
    font-size: 22px;
  }

  .product-item .product-details {
    padding: 8px 15px;
  }

  .product-item .product-name {
    font-size: 13px;
  }

  .product-item p {
    font-size: 12px;
  }

  .product-item .prefered-price {
    font-size: 12px;
  }

  .product-item .price .new-price {
    font-size: 16px;
  }

  .product-item .green-btn {
    padding: 5px 12px;
  }
}

/* todo =================== ABOUT-SECTION ===================== */

.about-section {
  padding: 50px 0px;
  background-color: var(--bg-gray);
}

.about-section .about-item {
  border-bottom: 1px solid #dbdbdb;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0.3;
}

.about-section h4 {
  font-size: 40px;
  font-weight: 700;
  color: var(--black-100);
}

.about-section h5 {
  font-size: 24px;
  font-weight: 500;
  color: var(--green-color);
}

.about-section p {
  color: var(--black-80);
  font-size: 22px;
  width: 95%;
}

.about-section .about-item.two {
  opacity: 1;
}

.about-section .girl-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.about-section .girl-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .about-section h4 {
    font-size: 26px;
  }

  .about-section h5 {
    font-size: 16px;
  }

  .about-section p {
    font-size: 16px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .about-section h4 {
    font-size: 20px;
  }

  .about-section h5 {
    font-size: 12px;
  }

  .about-section p {
    font-size: 13px;
    width: 100%;
  }
}

/* todo =================== SELLER-SLIDER-SECTION ===================== */

#sellersSlider {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* todo =================== REGISTER-SECTION ===================== */

.register-section {
  padding: 50px 0px;
  text-align: center;
}

.register-section .container {
  background-color: var(--green-color);
  height: 550px;
  width: 100%;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.register-section .container .dashline-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../assets/dashline-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 90%;
  height: 100%;
  position: relative;
}

.register-section .container .dashline-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80%;
  background-image: url("../assets/dashline-2.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  background-size: contain;
  position: relative;
}

.register-section .container .dashline-3 {
  width: 75%;
  background-image: url("../assets/dashline-3.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.register-section .container .p-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.register-section .container .p-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.register-section .container .dashline-1 .img-1 {
  position: absolute;
  left: -5px;
  top: 20%;
}

.register-section .container .dashline-1 .img-2 {
  position: absolute;
  left: 5px;
  bottom: 15%;
}

.register-section .container .dashline-1 .img-3 {
  position: absolute;
  right: 5px;
  bottom: 15%;
}

.register-section .container .dashline-2 .img-4 {
  position: absolute;
  right: 5px;
  top: 15%;
}

.register-section .container .dashline-2 .leaf {
  position: absolute;
  left: -15px;
  bottom: 30%;
}

.register-section .container .dashline-2 .face {
  position: absolute;
  right: -15px;
  bottom: 25%;
}

.register-section .container .content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white-100);
}

.register-section .container .content .white-leaf img {
  height: 60px;
  width: 60px;
  -o-object-fit: cover;
  object-fit: cover;
}

.register-section .container .content p {
  font-family: "Roboto", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white-100);
}

.register-section .container .content .register-btn {
  font-family: "Roboto", serif;
  font-size: 23px;
  font-weight: 400;
  border: none;
  background-color: var(--white-100);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--text-gray);
  border: 1px solid var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.register-section .container .content .register-btn:hover {
  background-color: var(--green-color);
  color: var(--white-100);
  border: 1px solid var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.help-section {
  position: relative;
}

.floating-bot {
  position: fixed;
  bottom: 70px;
  right: 5%;
  cursor: pointer;
}

.floating-bot img {
  width: 80px;
}

@media screen and (max-width: 1200px) {
  .register-section .container .content .white-leaf img {
    height: 45px;
    width: 45px;
  }

  .register-section .container .content h1 {
    font-size: 40px;
  }

  .register-section .container .content p {
    font-size: 20px;
  }

  .register-section .container .content .register-btn {
    font-size: 20px;
    padding: 8px 15px;
  }

  .register-section .container .p-img {
    height: 45px;
    width: 45px;
  }
}

@media screen and (max-width: 576px) {
  .register-section {
    padding: 50px 12px;
  }

  .register-section .container {
    height: 275px;
  }

  .register-section .container .content .white-leaf img {
    height: 27px;
    width: 27px;
  }

  .register-section .container .content h1 {
    font-size: 20px;
  }

  .register-section .container .content p {
    font-size: 13px;
  }

  .register-section .container .content .register-btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  .register-section .container .p-img {
    height: 32px;
    width: 32px;
  }

  .register-section .container .dashline-1 .img-1 {
    display: none;
  }

  .register-section .container .dashline-1 .img-2 {
    position: absolute;
    left: 5px;
    bottom: 15%;
  }

  .register-section .container .dashline-1 .img-3 {
    display: none;
  }

  .register-section .container .dashline-1 .img-4 {
    right: -10%;
  }

  .register-section .container .dashline-2 .leaf {
    position: absolute;
    left: -15px;
    top: 10%;
  }

  .register-section .container .dashline-2 .face {
    position: absolute;
    right: -15px;
    bottom: 15%;
  }
}

/* todo =================== TESTIMONIAL-SECTION ===================== */

/* .testimonial-section {
  padding: 100px 0px;
}

.testimonial-section .reviews-slider {
  display: flex;
  gap: 50px;
  align-items: center;
}

.testimonial-section .reviews-slider .card {
  padding: 30px 25px;
}

.testimonial-section .reviews-slider .card .name {
  font-family: "open-sans", sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  color: var(--text-gray);
} */

/* todo =================== FOOTER-SECTION ===================== */

.footer-section {
  background-color: var(--bg-gray);
  width: 100%;
  padding: 30px 50px;
}

.footer-section h4 {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 22px;
}

.footer-section .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--border-color);
  height: 54px;
  padding: 0px 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 50px;
}

.footer-section .input-wrapper input {
  height: 100%;
  width: calc(100% - 55px);
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: var(--black-100);
}

.footer-section .input-wrapper input::-webkit-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: var(--black-100);
}

.footer-section .input-wrapper input::-moz-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: var(--black-100);
}

.footer-section .input-wrapper input:-ms-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: var(--black-100);
}

.footer-section .input-wrapper input::-ms-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: var(--black-100);
}

.footer-section .input-wrapper input::placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: var(--black-100);
}

.footer-section .input-wrapper .send-icon {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: var(--green-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section .input-wrapper .send-icon:hover {
  background-color: var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section .input-wrapper .send-icon i {
  color: var(--white-100);
  font-size: 28px;
  position: relative;
  left: -2px;
  top: 2px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section .input-wrapper .send-icon:hover i {
  color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section p {
  font-size: 18px;
  font-family: "Roboto", serif;
  line-height: 1.2;
  margin-top: 15px;
}

.footer-section .listed-item li {
  list-style: none;
  margin-top: 10px;
}

.footer-section .listed-item li a {
  text-decoration: none;
  color: var(--black-100);
  font-size: 19px;
  font-weight: 400;
  font-family: "Roboto", serif;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.footer-section .listed-item li a:hover {
  color: var(--green-color);
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.footer-section .icon {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 10px 48px 10px 48px 10px 48px;
  grid-template-columns: 48px 48px 48px 48px;
  gap: 10px;
}

.footer-section .icon .icon-item {
  background-color: var(--green-color);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  border: 1px solid var(--green-color);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.footer-section .icon .micro-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white-100);
  border: 1px solid var(--green-color);
  height: 45px;
  width: 45px;
  border-radius: 50%;
}

.footer-section .icon .icon-item svg {
  height: 32px;
  width: 32px;
}

.footer-section .icon .icon-item svg path {
  fill: var(--white-100);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.footer-section .icon .icon-item:hover {
  background-color: var(--white-100);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section .icon .icon-item:hover i {
  color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section .icon .icon-item i {
  color: var(--white-100);
  font-size: 28px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-section .follow-us-desc {
  font-size: 16px;
  margin-top: 10px;
  color: var(--gray-100);
}

/* ? ~~~~~~~~~~ COPYRIGHT-SECTION ~~~~~~~~~~ */

.copyright-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

.copyright-section .copyright-year {
  font-size: 19px;
  font-family: "Roboto", serif;
  font-weight: 400;
}

.copyright-section .logo img {
  width: 120px;
}

.copyright-section .privacy a {
  text-decoration: none;
  color: var(--black-100);
  border-right: 2px solid var(--black-100);
  font-size: 19px;
  font-family: "Roboto", serif;
  padding: 0px 10px;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.copyright-section .privacy a:hover {
  color: var(--green-color);
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.copyright-section .privacy a:last-child {
  border: none;
}

/* ! RESPONSIVE START FOR (FOOTER-SECTION) */

@media screen and (max-width: 1200px) {
  .footer-section h4 {
    font-size: 22px;
  }

  .footer-section p {
    font-size: 17px;
    margin-top: 12px;
  }

  .footer-section .listed-item li a {
    font-size: 18px;
  }

  .footer-section .input-wrapper {
    height: 50px;
  }

  .footer-section .input-wrapper input {
    font-size: 18px;
  }

  .footer-section .input-wrapper input::-webkit-input-placeholder {
    font-size: 18px;
  }

  .footer-section .input-wrapper input::-moz-placeholder {
    font-size: 18px;
  }

  .footer-section .input-wrapper input:-ms-input-placeholder {
    font-size: 18px;
  }

  .footer-section .input-wrapper input::-ms-input-placeholder {
    font-size: 18px;
  }

  .footer-section .input-wrapper input::placeholder {
    font-size: 18px;
  }

  .footer-section .input-wrapper .send-icon {
    height: 38px;
    width: 38px;
  }

  .footer-section .input-wrapper .send-icon i {
    font-size: 20px;
  }

  .footer-section .icon .icon-item {
    background-color: var(--green-color);
    height: 38px;
    width: 38px;
    line-height: 38px;
  }

  .footer-section .icon .micro-icon {
    height: 38px;
    width: 38px;
  }

  .footer-section .icon .micro-icon img {
    height: 28px;
    width: 28px;
  }

  .footer-section .icon .icon-item i {
    font-size: 22px;
  }

  .footer-section .icon .icon-item svg {
    height: 25px;
    width: 25px;
  }

  .copyright-section .copyright-year {
    font-size: 18px;
  }

  .copyright-section .logo img {
    width: 100px;
  }

  .copyright-section .privacy a {
    border-right: 1px solid var(--black-100);
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 768px) {
  /* ?~~~~~~ COPYRIGHT-RESPONSIVE ~~~~~~ */

  .copyright-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 576px) {
  .footer-section {
    padding: 30px 15px;
  }

  .footer-section p {
    font-size: 16px;
    margin-top: 5px;
  }

  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .footer-section .listed-item li {
    margin-top: 10px;
  }

  .footer-section .listed-item li a {
    font-size: 16px;
  }

  .footer-section .input-wrapper {
    height: 45px;
  }

  .footer-section .input-wrapper input {
    font-size: 16px;
  }

  .footer-section .input-wrapper input::-webkit-input-placeholder {
    font-size: 16px;
  }

  .footer-section .input-wrapper input::-moz-placeholder {
    font-size: 16px;
  }

  .footer-section .input-wrapper input:-ms-input-placeholder {
    font-size: 16px;
  }

  .footer-section .input-wrapper input::-ms-input-placeholder {
    font-size: 16px;
  }

  .footer-section .input-wrapper input::placeholder {
    font-size: 16px;
  }

  .footer-section .input-wrapper .send-icon {
    height: 33px;
    width: 33px;
  }

  .footer-section .input-wrapper .send-icon i {
    font-size: 20px;
  }

  .footer-section .icon {
    -ms-grid-columns: 33px 33px;
    grid-template-columns: 33px 33px;
  }

  .footer-section .icon .icon-item {
    background-color: var(--green-color);
    height: 33px;
    width: 33px;
    line-height: 33px;
  }

  .footer-section .icon .micro-icon {
    height: 33px;
    width: 33px;
  }

  .footer-section .icon .micro-icon img {
    height: 25px;
    width: 25px;
  }

  .footer-section .icon .icon-item i {
    font-size: 20px;
  }

  .footer-section .follow-us-desc {
    font-size: 13px;
  }

  /* ?~~~~~~ COPYRIGHT-RESPONSIVE ~~~~~~ */

  .copyright-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .copyright-section .copyright-year {
    font-size: 16px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .copyright-section .logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .copyright-section .privacy {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .copyright-section .logo img {
    width: 80px;
  }

  .copyright-section .privacy a {
    border-right: 1px solid var(--black-100);
    font-size: 16px;
  }
}

@media screen and (min-width: 1240px) {
  .container,
  .nav,
  .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Todo ~~~~~~~~~~ FOOTER-SECTION ~~~~~~~~~ */

.footer-section.onlyDesc .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-section.onlyDesc .follow-us-desc {
  width: 25%;
}

.footer-section.onlyDesc .copyright-section {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  /* Todo ~~~~~~~~~~ FOOTER-SECTION ~~~~~~~~~ */

  .footer-section.onlyDesc .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-section.onlyDesc .follow-us-desc {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  /* Todo ~~~~~~~~~~ FOOTER-SECTION ~~~~~~~~~ */

  .footer-section.onlyDesc .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-section.onlyDesc .follow-us-desc {
    width: 100%;
  }
}

/* ! ~~~~~~~~~~~~~~~~~~~~~~~~~~ SIGN-IN PAGE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ? **** HEADER-SECTION ***** */
.signInPage .sign-in-header {
  border-bottom: 1px solid var(--gray-40);
}

.signInPage .sign-in-header span {
  font-size: 18px;
  position: relative;
  left: -10px;
}

/* ? **** MAIN-CONTENT-SECTION ***** */

.signInPage .main-content-section {
  padding: 100px 0px;
  padding-bottom: 20px;
}

.signInPage .main-content-section .content {
  max-width: 40%;
  margin: 0 auto;
}

.signInPage .title-name {
  font-size: 22px;
  color: var(--green-color);
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--gray-40);
}

.signInPage .input-head span {
  color: var(--gray-100);
  font-size: 18px;
}

.signInPage .input-wrapper {
  width: 100%;
  border: 1px solid var(--gray-40);
  height: 45px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.signInPage .input-wrapper input {
  border: none;
  outline: none;
  height: 100%;
  color: var(--gray-100);
  font-size: 18px;
  width: calc(100% - 35px);
  padding-left: 10px;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: transparent !important;
  width: auto;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  color: var(--gray-100);
  padding-left: 22px;
  font-size: 16px;
}

.intl-tel-input .selected-flag .iti-arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 0px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
}

.intl-tel-input .country-list {
  z-index: 99;
}

.signInPage .desc-txt {
  color: var(--gray-100);
  font-size: 18px;
}

.signInPage .or {
  position: relative;
}

.signInPage .or span {
  font-size: 18px;
  color: var(--gray-100);
  font-weight: 500;
  background-color: var(--white-100);
  position: relative;
  z-index: 5;
  padding: 0px 3px;
}

.signInPage .or::after {
  content: "";
  width: 100%;
  left: 0;
  height: 0.5px;
  background-color: var(--gray-40);
  top: 12px;
  position: absolute;
}

.social-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--gray-40);
  padding: 8px 12px;
  margin-top: 15px;
  gap: 10px;
  border-radius: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.social-wrapper span {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-gray);
}

.not-acc {
  font-size: 20px;
  color: var(--gray-100);
  font-weight: 300;
}

.not-acc a {
  text-decoration: none;
  color: var(--green-color);
  font-weight: 400;
  position: relative;
}

.not-acc .signUp::after {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 100%;
  height: 1px;
  background-color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.not-acc .signUp:hover::after {
  width: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.foot-content {
  margin-top: 100px;
}

.foot-content p {
  margin: 0;
  color: var(--gray-100);
  font-size: 18px;
  font-weight: 300;
}

.foot-content p a {
  text-decoration: none;
  color: var(--green-color);
}

/* ! ~~~~~~~~~~~~~~~~~~ SIGN-IN-WITH-EMAIL PAGE ~~~~~~~~~~~~~~~~~~~ */

.signInEmail label {
  font-size: 20px;
  color: var(--gray-100);
}

.signInEmail input {
  width: 100%;
  height: 45px;
  border: 1px solid var(--gray-40);
  border-radius: 6px;
  outline: none;
  padding: 10px;
  color: var(--gray-100);
  font-size: 20px;
}

@media screen and (max-width: 1200px) {
  .signInPage .main-content-section .content {
    max-width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .signInPage .main-content-section .content {
    max-width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .signInPage .main-content-section .content {
    max-width: 100%;
  }

  .not-acc .signUp::after {
    top: 20px;
  }
}

@media screen and (max-width: 576px) {
  .signInPage .main-content-section {
    padding: 50px 0px;
  }
  .signInPage .sign-in-header .logo img {
    width: 120px;
  }

  .signInPage .title-name {
    font-size: 18px;
    border-bottom-width: 1px;
  }

  .signInPage .sign-in-header span,
  .signInPage .main-content-section .content p,
  .foot-content p {
    font-size: 14px;
  }

  .signInPage .input-wrapper input {
    font-size: 16px;
  }

  .signInPage .main-content-section .content span {
    font-size: 16px;
  }

  .foot-content {
    margin-top: 50px;
  }

  /* ! ~~~~~~~~~~~~~~~~~~ SIGN-IN-WITH-EMAIL PAGE ~~~~~~~~~~~~~~~~~~~ */

  .signInEmail label {
    font-size: 16px;
  }

  .signInEmail input {
    font-size: 16px;
  }
}

/* ! ~~~~~~~~~~~~~~~~~~~~~~~ WELCOME-EMAIL TEMPLATE ~~~~~~~~~~~~~~~~~~~~~~~~ */

.email-section {
  background-color: var(--bg-gray);
  margin: 60px 0px;
  margin-bottom: 0;
  padding: 50px;
}

.email-section p {
  font-size: 20px;
  color: var(--gray-100);
  max-width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .email-section p {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .email-section p {
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .email-section {
    padding: 40px 20px;
  }
  .email-section p {
    font-size: 14px;
  }
}

/* ! ~~~~~~~~~~~~~~~~~~~ SUBSCRIPTION SHOP PAGE ~~~~~~~~~~~~~~~~~~ */

.shopPage header {
  position: sticky;
  top: 0;
  background-color: var(--bg-gray);
  z-index: 999;
}

.product-title-section {
  background-color: var(--bg-gray);
}

.navigation .navigate {
  font-size: 18px;
  color: var(--gray-100);
}

.navigation .navigate a {
  text-decoration: none;
  color: var(--gray-100);
}

.shopPage .product-header .img {
  height: 70px;
  width: 70px;
  background-color: var(--black-100);
  border-radius: 50%;
  margin: 0 auto;
}

.shopPage .product-header h1 {
  font-size: 52px;
  color: var(--black-100);
}

.shopPage .product-header p {
  font-size: 18px;
  color: var(--gray-100);
}

.shopPage .product-items {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.shopPage .product-item {
  border: 1px solid transparent;
  border-radius: 6px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.shopPage .product-item .product-img img {
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.activePrdImg {
  -webkit-transform: scale(1.18);
  -ms-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  border-radius: 6px;
}

.borderAppear {
  border: 1px solid var(--green-color) !important;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.shopPage .product-item .product-header {
  padding: 10px;
  border-radius: 6px 6px 0px 0px;
}

.shopPage .product-item .product-header .product-img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.shopPage .product-item .cart {
  height: 50px;
  width: 50px;
  color: var(--white-100);
  border: 1px solid var(--green-color);
  overflow: hidden;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  top: 110px;
  cursor: pointer;
  background-color: var(--white-100);
}

.shopPage .product-item .cart svg {
  height: 28px;
  width: 28px;
}

.shopPage .product-item .cart svg path {
  fill: var(--green-color);
}

.shopPage .product-item .cart img {
  width: auto;
  height: 50%;
}

.activeCart {
  transition: 0.2s ease;
  background-color: var(--green-color) !important;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.activeCart svg path {
  fill: var(--white-100) !important;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.shopPage .product-item .product-name {
  font-size: 18px;
}

.shopPage .product-item .product-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 55%;
  gap: 0;
}

.shopPage .product-item .product-details {
  padding: 12px 5px;
}

.shopPage .product-details .price .new-price {
  font-size: 20px;
}

.shopPage .product-item .product-details .pv {
  font-size: 18px;
  color: var(--gray-100);
}

/* ?  PRODUCT COLOR OPTION */

.product-item .product-color {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 3px auto 3px auto 3px auto 3px auto 3px auto;
  grid-template-columns: repeat(6, auto);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
}

.product-item .product-color .color-it {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  overflow: hidden;
  color: var(--green-color);
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.product-item .product-color .moreColor {
  height: 25px;
  width: 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--green-color);
}

.product-item .product-color .color-it:nth-child(1) {
  background-color: #d5ccc3;
}

.product-item .product-color .color-it:nth-child(2) {
  background-color: #d3ae90;
}

.product-item .product-color .color-it:nth-child(3) {
  background-color: #c0865d;
}

.product-item .product-color .color-it:nth-child(4) {
  background-color: #88705e;
}

.product-item .product-color .color-it:nth-child(5) {
  background-color: #594d43;
}

.product-item .product-color .color-it:nth-child(5) {
  background-color: #88705e;
}

.product-item .product-color .color-it:nth-child(6) {
  background-color: #594d43;
}

.product-item .product-color .color-it:nth-child(7) {
  background-color: #88705e;
}

.product-item .product-color .color-it:nth-child(8) {
  background-color: #594d43;
}

.all-colorPlate {
  position: absolute;
  width: 90%;
  min-height: 90px;
  background-color: var(--white-100);
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  bottom: 35px;
  display: none;
  padding: 8px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  -webkit-animation: fadeUp 0.2s ease;
  animation: fadeUp 0.2s ease;
  border-radius: 4px;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(50%);
    transform: scale(50%);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(50%);
    transform: scale(50%);
  }
}

.close-color {
  position: absolute;
  right: 8px;
  top: 4px;
  color: var(--green-color);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

.colorsModal .modal-content {
  width: 250px;
  margin: 0 auto;
}

.colorsModal .modal-body {
  padding: 30px 10px;
  padding-top: 50px;
}

.all-colorPlate .product-color .color-it:nth-child(1) {
  background-color: #d3ae90;
}

.all-colorPlate .product-color .color-it:nth-child(2) {
  background-color: #d3ae90;
}

.all-colorPlate .product-color .color-it:nth-child(3) {
  background-color: #c0865d;
}

.all-colorPlate .product-color .color-it:nth-child(4) {
  background-color: #88705e;
}

.all-colorPlate .product-color .color-it:nth-child(5) {
  background-color: #594d43;
}

.all-colorPlate .product-color .color-it:nth-child(5) {
  background-color: #88705e;
}

.all-colorPlate .product-color .color-it:nth-child(6) {
  background-color: #594d43;
}

.all-colorPlate .product-color .color-it:nth-child(7) {
  background-color: #88705e;
}

.all-colorPlate .product-color .color-it:nth-child(8) {
  background-color: #594d43;
}

.quantity .remove,
.quantity .add {
  height: 22px;
  width: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  color: var(--green-color);
  border: 2px solid var(--green-color);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.quantity .quantity-num {
  font-size: 18px;
  font-weight: 550;
  width: 20px;
  text-align: center;
}

.quantity .savelist {
  font-size: 25px;
  color: var(--green-color);
  cursor: pointer;
}

.cross-item i {
  font-size: 24px;
  color: var(--green-color);
}

/* Product Size */
.product-size .size-box {
  position: relative;
  border: 1px solid var(--gray-40);
  border-radius: 4px;
  padding: 8px;
  width: 100%;
  background: white;
  cursor: pointer;
  min-height: 40px;
}

.dropdown-btn {
  font-size: 14px;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  padding: 0px;
  cursor: pointer;
  color: var(--gray-100);
  white-space: nowrap;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white-100);
  border: 1px solid var(--gray-40);
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.dropdown-list li {
  padding: 3px 8px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
}

.dropdown-list li:hover {
  background-color: var(--gray-100);
  color: var(--white-100);
}

.product-size .size-box span {
  display: inline-block;
  padding: 0px 5px;
  color: var(--green-color);
  position: absolute;
  background-color: var(--white-100);
  top: -10px;
  left: 10px;
  font-size: 14px;
  z-index: 9;
}

.product-size .size-box .arrow-dn {
  font-size: 20px;
  font-weight: 500;
  color: var(--green-color);
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--green-color);
}

/* ? Pagination */
.shopPage .pagination-sec .container {
  width: 60%;
  margin: 0 auto;
}

.shopPage .pagination {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr
    20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.shopPage .pagination .page-n,
.shopPage .pagination .prev-page,
.shopPage .pagination .next-page {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-100);
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.shopPage .pagination .prev-page,
.shopPage .pagination .next-page {
  font-size: 24px;
}

.shopPage .pagination .page-n:hover,
.shopPage .pagination .prev-page:hover,
.shopPage .pagination .next-page:hover {
  background-color: var(--black-100);
  color: var(--white-100);
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.activePage {
  background-color: var(--black-100) !important;
  color: var(--white-100) !important;
}

.customize-sec-mobile {
  display: none;
}

.bottom-menu {
  display: none;
}

.main-product-section .customize-sec .close-categories {
  display: none;
}

@media screen and (max-width: 1200px) {
  .shopPage .product-items {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .shopPage .product-item .cart {
    top: 130px;
  }
  .shopPage .subtotal-sec {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .shopPage .navbar-section {
    display: block;
    padding: 10px 15px;
  }
}

@media screen and (max-width: 991px) {
  .customize-sec-mobile {
    display: block;
  }

  .listitem-for-mobile {
    background-color: #f3f3f3;
    padding: 15px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border-top: 2px solid #ccc;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .listitem-for-mobile::-webkit-scrollbar {
    display: none;
  }

  .listitem-for-mobile button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    border: none;
    color: var(--black-100);
    background-color: var(--white-100);
    padding: 3px 5px;
    border: 1px solid var(--gray-40);
    border-radius: 4px;
    font-size: 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .listitem-name {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 400;
    color: var(--gray-100);
  }

  .list-grid-section {
    padding: 0px 12px;
    border-bottom: 2px solid #ddd;
  }

  .layout-selection .left button {
    background-color: transparent;
    border: none;
    color: var(--gray-100);
    font-size: 14px;
  }

  .layout-selection .left button i {
    font-size: 18px;
  }

  .layout-selection .right .grid,
  .layout-selection .right .list-view {
    font-size: 28px;
    color: var(--gray-100);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
  }

  .layout-selection .right .list-view i {
    font-weight: 600;
  }

  .layout-selection .right .active {
    color: var(--black-100);
    opacity: 1;
  }

  .shopPage .product-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .shopPage .product-item .product-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 55%;
  }

  .shopPage .product-details p {
    font-size: 12px;
  }

  /* ? For list items showing */

  .shopPage .product-items.activeListView {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }

  .shopPage .product-items.activeListView .all-colorPlate {
    width: 190px;
  }

  .shopPage .product-items.activeListView .quantity {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .shopPage .product-items.activeListView .product-color {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .shopPage .product-items.activeListView .price {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .shopPage .product-items.activeListView .product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .product-items.activeListView .product-item .product-details {
    padding: 12px 8px;
    text-align: left;
    height: 100%;
  }

  .product-items.activeListView .product-item .product-header {
    width: 40%;
  }

  .product-items.activeListView .product-item .product-img {
    width: 120px;
    height: 100%;
    overflow: hidden;
  }

  .product-items.activeListView .product-item .product-header .product-img img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
    width: 100%;
  }

  .product-items.activeListView .product-item .cart {
    position: absolute;
    right: 12px;
    top: 25%;
  }

  .product-items.activeListView .product-header {
    height: auto;
    padding: 0;
  }

  /* ? Customize Sec (Categories List MEnu) */
  .main-product-section .customize-sec {
    position: fixed;
    top: 0px;
    left: -100%;
    height: 100%;
    padding-bottom: 20px;
    width: 60%;
    background-color: var(--white-100);
    z-index: 99999999;
    overflow-y: auto;
    padding-top: 50px;
    padding-bottom: 20px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-product-section .customize-sec::-webkit-scrollbar {
    display: none;
  }

  .main-product-section .customize-sec .close-categories {
    font-size: 26px;
    font-weight: 500;
    position: absolute;
    right: 8px;
    top: 8px;
    color: var(--gray-100);
    cursor: pointer;
    display: block;
  }

  .main-product-section .customize-sec button {
    font-size: 14px;
  }

  .customize-sec .group-list {
    padding: 10px;
  }

  .main-product-section .customize-sec .group-list .list-body li {
    font-size: 14px;
    padding: 8px 8px;
  }

  .main-product-section .customize-sec .group-list .list-body .ct-img {
    display: none;
  }

  .product-item .price del {
    font-size: 16px;
  }

  .customize-sec .group-list .header .arrow {
    display: inline-block;
  }

  .bottom-menu {
    padding: 10px 0px;
    border-top: 2px solid var(--gray-40);
    position: sticky;
    width: 100%;
    display: block;
    bottom: 0;
    z-index: 9999;
    background-color: var(--white-100);
  }

  .bottom-menu {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .bottom-menu.show-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .bottom-menu .back-btn a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: var(--black-100);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-menu .back-btn a i {
    font-size: 22px;
  }

  .bottom-menu .logo {
    height: 45px;
    width: 45px;
    outline-offset: 3px;
    outline: 1px solid var(--green-color);
    border-radius: 50%;
    overflow: hidden;
  }

  .bottom-menu .logo img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .bottom-menu .shoping-cart {
    position: relative;
  }

  .bottom-menu .shoping-cart .total-prd {
    padding: 1px 4px;
    background-color: var(--green-color);
    color: var(--white-100);
    font-weight: 500;
    font-size: 12px;
    border-radius: 50%;
    position: absolute;
    right: -4px;
    top: -10px;
  }

  .bottom-menu .bar-icon {
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

@media screen and (max-width: 768px) {
  .shopPage .product-items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .shopPage .product-item .cart {
    top: 50%;
    right: 20%;
  }
}

@media screen and (max-width: 576px) {
  .navigation .navigate {
    font-size: 14px;
  }

  .shopPage .product-item .product-details {
    height: 55%;
  }

  .shopPage .marking-slider .stepper .step:nth-child(2),
  .shopPage .marking-slider .stepper .step:nth-child(4) {
    display: none;
  }

  .subscription-page .marking-slider .stepper .step:nth-child(2),
  .subscription-page .marking-slider .stepper .step:nth-child(4) {
    display: none;
  }

  .step span {
    display: inline-block;
    height: 20px;
    top: -20px;
    font-weight: 500;
    font-size: 16px;
  }

  .step .circle {
    top: -7px;
  }

  .shopPage .title-section,
  .shopPage .logo-section {
    display: none;
  }

  .shopPage .main-product-section .product-title-header {
    display: none;
  }

  .shopPage .subtotal-sec {
    display: none;
  }

  /* END HERE */

  .shopPage .product-details .price .new-price {
    font-size: 18px;
  }

  .shopPage .product-item .product-details .pv {
    font-size: 16px;
  }

  .shopPage .pagination {
    gap: 10px;
  }

  .shopPage .pagination .page-n,
  .shopPage .pagination .prev-page,
  .shopPage .pagination .next-page {
    height: 34px;
    width: 34px;
    font-size: 14px;
  }

  .shopPage .pagination .prev-page,
  .shopPage .pagination .next-page {
    font-size: 20px;
  }

  .shopPage .product-header .img {
    height: 55px;
    width: 55px;
  }

  .shopPage .product-header h1 {
    font-size: 34px;
  }

  .shopPage .product-header p {
    font-size: 16px;
  }

  .shopPage .product-item .product-name {
    font-size: 16px;
  }

  .help-section {
    display: block;
  }

  .help-section img {
    height: 60px;
    width: 60px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .pagination-sec {
    display: none;
  }

  /* Bottom menu */
  .rangeline-mobile {
    display: block;
    width: 100%;
  }

  .rangeline-mobile .checkout-btn {
    font-size: 16px;
    color: var(--white-100);
    background-color: #e1e1e5;
    border: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 25px;
  }
}

@media screen and (max-width: 450px) {
  .product-items.activeListView .product-color {
    -ms-grid-columns: (auto) [6];
    grid-template-columns: repeat(6, auto);
  }

  .product-item .product-color {
    -ms-grid-columns: (auto) [4];
    grid-template-columns: repeat(4, auto);
  }
}

@media screen and (max-width: 375px) {
  .shopPage .product-item .product-details {
    height: 60%;
  }

  .shopPage .product-item .product-name {
    font-size: 15px;
  }
}

/* ! ~~~~~~~~~~~~~~~~~~~ SUBSCRIPTION PORDUCT ALL ~~~~~~~~~~~~~~~~~~~~ */

/* todo ~~~~~~~~~~~~~  ACTIVATION HEADER ~~~~~~~~~~~~~ */

.activation-section {
  padding-top: 80px;
}

.activation-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 3px solid #ddd;
  position: relative;
  --after-left: 0%;
}

.activation-menus::after {
  content: "";
  height: 3px;
  width: 50%;
  background-color: var(--green-color);
  bottom: -2px;
  left: var(--after-left);
  position: absolute;
  -webkit-transition: left 0.3s ease;
  -o-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.activation-menus .act-menu {
  width: 50%;
  padding: 10px 0px;
  font-size: 18px;
  color: var(--gray-100);
  font-weight: 550;
  cursor: pointer;
}

.activation-menus .act-menu.active {
  color: var(--green-color);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* TODO ~~~~~~~~~~~~~~~~ SUBSCRIPTION BLACK CARD ~~~~~~~~~~~~~~~ */

.subscription-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--black-100);
  padding: 15px;
  color: var(--white-100);
  border-radius: 8px;
  font-weight: 500;
}

.subscription-card .arrowIcon {
  font-size: 26px;
  cursor: pointer;
  height: 25px;
  line-height: 25px;
}

@media screen and (max-width: 576px) {
  .activation-menus .act-menu {
    font-size: 16px;
  }

  .subscription-card {
    font-size: 14px;
    gap: 5px;
    padding: 15px 10px;
  }
  .subscription-card span {
    font-size: 12px;
  }
}
