@font-face {
  font-family: "DMSans";
  src: url("../fonts/DMSans-Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: url("../fonts/DMSans-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: url("../fonts/DMSans-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: url("../fonts/DMSans-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DMSans", sans-serif;
  font-size: 16px;
}
body button,
body input {
  outline: none;
  border: none;
  background: transparent;
}
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
}
body a {
  text-decoration: none;
  color: #24262b;
}
body a:hover {
  color: #0d775e;
}
body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body footer {
  background-color: #24262b;
  width: 100%;
  padding-top: 80px;
}
body h1 {
  font-size: clamp(40px, 10vw, 90px);
  font-weight: bold;
}

.ecm-primary-text-color {
  color: #0d775e;
}

.ecm-primary-bg-color {
  background-color: #0d775e;
}

.ecm-para-text {
  color: #6f5e5e;
}

.primary-dot {
  background-color: #0d775e;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.white-color {
  color: #ffffff;
}

.primary-color {
  color: #0d775e;
}

.ecm-purple-color {
  color: #9072ad;
}

.ecm-section-py {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ecm-section-pb {
  padding-bottom: 80px;
}

.ecm-section-pt {
  padding-top: 80px;
}

.ecm-bg-white {
  background-color: #ffffff;
}

.ecm-bg-secondary {
  background-color: #24262b;
}

.ecm-bg-primary {
  background-color: #0d775e;
}

.ecm-border {
  background: #d7d7d7;
  height: 35px;
  width: 1px;
}

.ecm-gray-3-bg {
  background-color: #f5f5f5;
}

.font-18 {
  font-size: clamp(14px, 1.8vw, 18px);
}

.font-16 {
  font-size: clamp(14px, 1.6vw, 16px);
}

.font-15 {
  font-size: clamp(10px, 1.5vw, 15px);
}

.font-14 {
  font-size: clamp(8px, 1.4vw, 14px);
}

.font-13 {
  font-size: clamp(7px, 1.3vw, 13px);
}

.font-12 {
  font-size: clamp(6px, 1.2vw, 12px);
}

.font-24 {
  font-size: clamp(14px, 2.4vw, 24px);
}

.font-28 {
  font-size: clamp(18px, 2.8vw, 28px);
}

.font-30 {
  font-size: clamp(20px, 3vw, 30px);
}

.font-35 {
  font-size: clamp(25px, 3.5vw, 35px);
}

.font-40 {
  font-size: clamp(30px, 4vw, 40px);
}

.font-60 {
  font-size: clamp(40px, 6vw, 60px);
}

.font-72 {
  font-size: clamp(50px, 7.2vw, 72px);
}

.font-80 {
  font-size: clamp(60px, 8vw, 80px);
}

.ecm-btn-primary {
  background-color: #24262b;
  padding: 15px 35px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  border: 1px solid #24262b;
  cursor: pointer;
}
.ecm-btn-primary:hover {
  background-color: transparent;
  border: 1px solid #24262b;
  color: #24262b;
}

.ecm-green-btn-sm {
  background-color: #0d775e;
  padding: 2px 7px;
  color: #ffffff;
}

.ecm-btn-secondary {
  background-color: transparent;
  padding: 15px 35px;
  border: 1px solid #24262b;
  color: #24262b;
  transition: all 0.3s ease-in-out;
}
.ecm-btn-secondary:hover {
  background-color: #24262b;
  padding: 15px 35px;
  color: #ffffff;
}

.ecm-btn-transparent {
  background-color: transparent;
  padding: 15px 35px;
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.ecm-btn-transparent:hover {
  background-color: #ffffff;
  padding: 15px 35px;
  color: #24262b;
}

.ecm-secondary-btn-sm {
  background: transparent !important;
  padding: 12px 25px;
  border: 1px solid #24262b;
  margin: 17px 0 15px;
  transition: all 0.3s ease-in-out;
  color: #24262b;
}
.ecm-secondary-btn-sm:hover {
  background: #24262b !important;
  color: #ffffff;
}

.ecm-light-btn {
  background-color: #f6f6f6;
  padding: 12px 25px;
  color: #24262b;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ecm-light-btn:hover {
  background-color: #24262b;
  color: #ffffff;
}

.ecm-secondary-btn-xs {
  background-color: transparent;
  width: 34px;
  height: 34px;
  border: 1px solid #24262b;
  color: #24262b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ecm-secondary-btn-xs.active, .ecm-secondary-btn-xs:hover {
  background-color: #24262b;
  color: #ffffff;
}

.ecm-primary-btn-xs {
  background-color: #24262b;
  width: 34px;
  height: 34px;
  border: 1px solid #24262b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ecm-primary-btn-xs.active, .ecm-primary-btn-xs:hover {
  background-color: transparent;
  color: #24262b;
}

.ecm-white-btn {
  background-color: #ffffff;
  padding: 15px 35px;
  color: #24262b;
  transition: all 0.3s ease-in-out;
}
.ecm-white-btn:hover {
  background-color: #24262b;
  color: #ffffff;
}

.ecm-item-remove-btn {
  background-color: #d8d8d8;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ecm-item-remove-btn:hover {
  background-color: #ebebeb;
}

.ecm-reply-btn {
  background-color: #24262b;
  color: #ffffff;
  padding: 3px 10px;
}

.ecm-header {
  background-color: #ffffff;
}
.ecm-header .lf-language .dropdown-show-box {
  border: 1px solid #c4c4c4;
}
.ecm-header .lf-language .dropdown-show-box a:hover {
  background-color: #c4c4c4;
}
.ecm-header .frontend-profile-nav .dropdown-show-box {
  border: 1px solid #c4c4c4;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul {
  display: block !important;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li {
  position: relative;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li > ul {
  background-color: #c4c4c4;
  display: none !important;
  position: absolute;
  left: 0px;
  top: 40px;
  z-index: 999;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li:hover > ul {
  display: block !important;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li a {
  display: inline-block;
  width: 100%;
  padding: 8px 14px;
  color: #24262b !important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-wrap: nowrap;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li a:hover {
  color: #ffffff !important;
  background-color: #24262b !important;
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li a::after {
  content: "";
}
.ecm-header .frontend-profile-nav .dropdown-show-box .profile-nav ul li:has(ul) > a::after {
  content: "\f107";
  font-family: fontawesome !important;
  font-weight: 900;
  float: right;
}
.ecm-header .ecm-top-header {
  position: relative;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}
.ecm-header .ecm-top-header.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.ecm-header .ecm-top-header .ecm-logo {
  max-height: 40px;
}
.ecm-header .ecm-top-header .ecm-header-search {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 15px;
}
.ecm-header .ecm-top-header .ecm-header-search .ecm-search-input {
  height: 40px;
  width: 100%;
  padding-right: 5px;
}
.ecm-header .ecm-top-header .ecm-header-search .ecm-search-btn i {
  color: #0d775e;
  font-size: clamp(14px, 2vw, 20px);
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-item-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #0d775e;
  color: #ffffff;
  border-radius: 100%;
  padding: 1px;
  min-width: 14px;
  min-height: 14px;
  text-align: center;
  font-size: 10px;
}
.ecm-header .ecm-top-header .my-shopping-cart .icon-btn {
  color: #24262b;
  background-color: transparent;
  font-size: 30px;
  min-width: 0px;
  min-height: 0px;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box {
  position: fixed;
  display: flex;
  top: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
  overflow-y: scroll;
  width: 100%;
  flex-direction: row-reverse;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box.active {
  transform: translateX(0%);
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .close-drawer {
  cursor: pointer;
  padding: clamp(10px, 2vw, 20px);
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .close-drawer i:hover {
  color: #24262b;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content {
  background-color: #ffffff;
  width: 485px;
  height: 100vh;
  overflow-y: scroll;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  gap: 16px;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products input[type=number] {
  appearance: none;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-img {
  width: 60px;
  height: 60px;
  background-color: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-img img {
  width: 50px;
  height: auto;
  object-fit: contain;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-quantity-wrapper .product-btn {
  background-color: #f6f6f6;
  width: clamp(25px, 3vw, 30px);
  height: clamp(25px, 3vw, 30px);
  color: #24262b;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-quantity-wrapper .product-btn:hover {
  background-color: #24262b;
  color: #ffffff;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-quantity-wrapper .quantity-input {
  background-color: #f6f6f6;
  border: 1px solid #d8d8d8;
  width: clamp(33px, 3.8vw, 38px);
  padding: 0 3px;
  height: clamp(25px, 3vw, 30px);
  text-align: center;
  -moz-appearance: textfield;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-quantity-wrapper .quantity-input::-webkit-inner-spin-button, .ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-quantity-wrapper .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-info .product-title {
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-content .cart-drawer-products .product-item-remove-btn {
  background-color: transparent;
  font-size: 14px;
  color: #6f5e5e;
}
.ecm-header .ecm-top-header .my-shopping-cart .cart-drawer-box .cart-drawer-overlay {
  position: fixed;
  top: 0;
  right: 0 !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -100;
}
.ecm-header .ecm-top-header .cart-container {
  max-height: 800px;
  overflow-y: auto;
}
.ecm-header .ecm-top-header .cart-container .fa-truck {
  color: #0d775e;
  transform: scaleX(-1);
}
.ecm-header .ecm-top-header .ecm-res-search-bar {
  position: absolute;
  top: 2px;
  margin: 0 auto;
  left: 0;
  width: 100%;
  padding: 0 12px;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: -10;
}
.ecm-header .ecm-top-header .ecm-res-search-bar .ecm-res-header-search {
  background-color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ecm-header .ecm-top-header .ecm-res-search-bar.active {
  transform: translateY(73px);
  opacity: 1;
}

.ecm-navbar {
  background-color: #24262b;
  width: 100%;
}
.ecm-navbar .lf-main-nav {
  justify-content: center !important;
  gap: 30px;
}
.ecm-navbar .lf-main-nav li a {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 15px;
  font-family: "DM Sans", sans-serif !important;
}
.ecm-navbar .lf-main-nav li a:hover {
  color: #84bbae !important;
}
.ecm-navbar .lf-main-nav li a::after {
  width: 8px;
  text-align: center;
  height: 8px;
  line-height: 8px !important;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -5px;
  content: "\f107";
  font-family: fontawesome !important;
  transition: all 0.2s linear;
}
.ecm-navbar .lf-main-nav li a::after:hover {
  transform: rotate(-180deg);
}
.ecm-navbar .lf-main-nav li:hover > a::after {
  content: "\f107";
  transform: rotate(-180deg);
}
.ecm-navbar .lf-main-nav ul {
  background-color: #ffffff !important;
}
.ecm-navbar .lf-main-nav ul li a {
  color: #24262b !important;
  font-size: 15px;
}
.ecm-navbar .lf-main-nav ul li a::after {
  right: 10px !important;
}
.ecm-navbar .lf-main-nav ul li:hover > a::after {
  content: "\f107";
  transform: rotate(-90deg);
}
.ecm-navbar .lf-main-nav ul li:hover > a {
  color: #ffffff !important;
  background-color: #24262b !important;
}
.ecm-navbar .lf-responsive-menu-wrapper {
  background-color: transparent !important;
}
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_menu,
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_btn {
  background-color: transparent !important;
  padding: 0px !important;
}
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_menu .slicknav_nav {
  background-color: #c4c4c4 !important;
}
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_menu .slicknav_nav a {
  color: #24262b !important;
  font-size: 15px;
}
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_menu .slicknav_nav a:hover {
  color: #ffffff !important;
  background-color: #24262b !important;
}
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_menu .slicknav_nav a:hover a {
  background-color: transparent !important;
  color: #ffffff !important;
}
.ecm-navbar .lf-responsive-menu-wrapper .slicknav_icon-bar {
  background-color: #ffffff !important;
  margin: 0 auto 5px !important;
  width: 20px !important;
  height: 2px !important;
}

.ecm-nav {
  background-color: #24262b;
  padding: 22px 0px;
  width: 100%;
  color: #ffffff;
  font-size: 14px;
}

.ecm-nav ul li a {
  color: #ffffff;
}

.ecm-nav ul {
  gap: 0;
  padding: 0px;
}

.selected-lang-flag {
  width: 35px;
  height: 18px;
  padding: 0;
  margin-top: -4px;
}

.lang-flag {
  width: 35px;
  height: 18px;
}

.dropdown-divider {
  border: 1px solid #d8d8d8;
  margin: 4px 0px;
}

.ecm-color-black {
  color: #24262b;
}

.menu-dropdown-btn {
  position: relative;
}
.menu-dropdown-btn .menu-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  width: 200px;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  z-index: -10;
  transition: all 0.3s ease-in-out;
}
.menu-dropdown-btn:hover .menu-dropdown {
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

footer {
  background-color: #24262b;
  width: 100%;
}
footer .footer-nav-title,
footer .footer-text {
  color: #ffffff;
}
footer ul li a {
  color: #ffffff;
}
footer ul li a:hover {
  color: #84bbae;
}
footer .footer-logo {
  width: 100px;
}
footer .paying-card {
  width: 30px;
  height: 19px;
}

.ecm-product-card .ecm-product-img-box {
  height: 290px;
  background-color: #f3f3f3;
  position: relative;
  overflow: hidden;
}
.ecm-product-card .ecm-product-img-box .ecm-product-discount,
.ecm-product-card .ecm-product-img-box .ecm-product-tag {
  position: absolute;
  top: 0;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}
.ecm-product-card .ecm-product-img-box .ecm-product-discount > *,
.ecm-product-card .ecm-product-img-box .ecm-product-tag > * {
  color: #ffffff;
  margin-bottom: 5px;
  padding: 4px 8px;
}
.ecm-product-card .ecm-product-img-box .ecm-product-tag {
  right: 0;
}
.ecm-product-card .ecm-product-img-box .ecm-product-tag > * {
  background-color: #0d775e;
}
.ecm-product-card .ecm-product-img-box .ecm-product-discount {
  left: 0;
}
.ecm-product-card .ecm-product-img-box .ecm-product-discount > * {
  background-color: #24262b;
}
.ecm-product-card .ecm-product-img-box .ecm-product-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.ecm-product-card .ecm-product-img-box .ecm-product-add,
.ecm-product-card .ecm-product-img-box .ecm-product-image {
  transition: all 0.3s ease-in-out;
}
.ecm-product-card .ecm-product-img-box .ecm-product-add {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 26px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.ecm-product-card .ecm-product-img-box .ecm-product-add .ecm-btn-primary:hover {
  background-color: #ffffff;
  color: #24262b;
}
.ecm-product-card:hover .ecm-product-img-box .ecm-product-image {
  transform: scale(1.1);
}
.ecm-product-card:hover .ecm-product-img-box .ecm-product-add {
  bottom: 0;
}
.ecm-product-card .ecm-product-rating {
  color: #ff8a00;
  margin: 10px 0px 10px;
}
.ecm-product-card .gray-star {
  color: #e0e0e0;
}
.ecm-product-card .old-price {
  text-decoration: line-through;
  color: #6f5e5e;
  font-size: 16px;
  margin-right: 8px;
}
.ecm-product-card .new-price {
  color: #0d775e;
  font-weight: 600;
  font-size: 16px;
}

.featured-cards .featured-img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.featured-cards .featured-img:hover {
  transform: scale(1.1);
}
.featured-cards .category-card {
  position: relative;
  height: 300px;
  background-color: #f3f3f3;
}
.featured-cards .category-card.left {
  margin-left: 40px;
}
.featured-cards .category-card.left .category-card-title {
  left: -40px;
}
.featured-cards .category-card.right {
  margin-right: 40px;
}
.featured-cards .category-card.right .category-card-title {
  right: -40px;
}
.featured-cards .category-card .category-card-title {
  position: absolute;
  bottom: 32px;
  background-color: #24262b;
  color: #ffffff;
  padding: 8px 20px;
}
@media (max-width: 991.98px) {
  .featured-cards .category-card.left {
    margin-left: 0;
  }
  .featured-cards .category-card.left .category-card-title {
    left: auto;
  }
  .featured-cards .category-card.right {
    margin-right: 0;
  }
  .featured-cards .category-card.right .category-card-title {
    right: auto;
  }
}

.ecm-banner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 143px);
  position: relative;
  z-index: 1;
  background-color: #f6f6f6;
}
.ecm-banner::before {
  content: "";
  top: 0;
  height: 100%;
  width: 50%;
  position: absolute;
  z-index: -1;
  right: 0;
  background-color: #d8d8d8;
}
.ecm-banner .banner-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecm-banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ecm-banner .hero-left h3 {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: bold;
  padding-bottom: 12px;
}
.ecm-banner .hero-left p {
  font-size: 24px;
  font-weight: lighter;
}
.ecm-banner .side-social {
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}
.ecm-banner .side-social .top-social {
  display: flex;
  flex-direction: column;
}
.ecm-banner .side-social .top-social .instagram-link,
.ecm-banner .side-social .top-social .facebook-link {
  margin-bottom: 1px;
}
.ecm-banner .side-social .bottom-social {
  padding-bottom: 2px;
}
.ecm-banner .side-social .bottom-social .chat-link {
  background-color: #24262b;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 5px;
  font-size: 14px;
}
.ecm-banner .side-social .social-link {
  margin-top: 40px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: #24262b;
  font-weight: 300;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.ecm-banner .side-social .social-link:hover {
  color: #0d775e;
}

@media screen and (max-width: 1199px) {
  .ecm-banner::before {
    display: none;
  }
}
.ecm-service {
  background-color: #ebebeb;
}
.ecm-service .ecm-service-card {
  text-align: center;
}
.ecm-service .ecm-service-card .service-card-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecm-service .ecm-service-card .service-card-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  color: #333;
}
.ecm-service .ecm-service-card .service-card-description {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
.ecm-service .ecm-service-card .service-card-diamond {
  width: 10px;
  height: 10px;
  border: 1px solid #0d775e;
  background-color: transparent;
  margin: 0 auto 14px;
  transform: rotate(45deg);
}

.sales-banner {
  width: 100%;
  height: 300px;
}

.ecm-product-banner .produt-banner-bg {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1505740420928-5e560c06d30e?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  width: 100%;
  height: 590px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
.ecm-product-banner .produt-banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.ecm-product-banner .produt-banner-bg > * {
  position: relative;
  z-index: 2;
}
.ecm-product-banner .product-banner-content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.ecm-product-banner a:hover {
  color: #ffffff;
}
.ecm-product-banner .ecm-btn-transparent:hover {
  color: #24262b;
}
.ecm-product-banner .product-banner-img {
  overflow: hidden;
}
.ecm-product-banner .product-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.ecm-product-banner .product-banner-img img:hover {
  transform: scale(1.1);
}

.ecm-popular .popular-sidebar {
  padding: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ecm-popular .popular-sidebar--pink {
  background-color: #f4d0d5;
  padding: 30px 15px 0;
}
.ecm-popular .popular-sidebar--gray {
  background-color: #e0e0e0;
}
.ecm-popular .popular-sidebar span {
  color: #0d775e;
}
.ecm-popular .popular-sidebar h2 {
  font-weight: 600;
  margin-bottom: 0;
}
.ecm-popular .popular-tab .lf-tab-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ecm-popular .popular-tab .lf-tab-box .see-all-link {
  color: #24262b;
  font-size: 15px;
  font-weight: 500;
}
.ecm-popular .popular-tab .lf-tab-box .see-all-link:hover {
  color: #0d775e;
}
.ecm-popular .popular-tab .lf-tab-box .lf-tab-item {
  background-color: transparent !important;
  flex: unset !important;
  color: #24262b !important;
  font-weight: 500 !important;
  transition: all 0.3s ease-in-out;
  text-align: left;
  display: block !important;
  text-wrap: nowrap;
  padding: 0px 0px !important;
}
.ecm-popular .popular-tab .lf-tab-box .lf-tab-item:hover {
  color: #0d775e !important;
}
.ecm-popular .popular-tab .lf-tab-box .lf-tab-item.active {
  color: #0d775e !important;
  background-color: transparent !important;
  border: 0px !important;
}
.ecm-popular .lf-tab-content {
  background-color: transparent !important;
}
.ecm-popular .side-img {
  width: 100%;
  height: 244px;
}

.ecm-classic-popular .popular-sidebar {
  padding: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ecm-classic-popular .popular-sidebar--pink {
  background-color: #f4d0d5;
  padding: 30px 15px 0;
  min-height: 435px;
}
.ecm-classic-popular .popular-sidebar--gray {
  background-color: #e0e0e0;
}
.ecm-classic-popular .popular-sidebar span {
  color: #0d775e;
}
.ecm-classic-popular .popular-sidebar h2 {
  font-weight: 600;
  margin-bottom: 0;
}
.ecm-classic-popular .popular-tab .lf-tab-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ecm-classic-popular .popular-tab .lf-tab-box .see-all-link {
  color: #24262b;
  font-size: 15px;
  font-weight: 500;
}
.ecm-classic-popular .popular-tab .lf-tab-box .see-all-link:hover {
  color: #0d775e;
}
.ecm-classic-popular .popular-tab .lf-tab-box .lf-tab-item {
  background-color: transparent !important;
  flex: unset !important;
  color: #24262b !important;
  font-weight: 500 !important;
  transition: all 0.3s ease-in-out;
  text-align: left;
  display: block !important;
  text-wrap: nowrap;
  padding: 0px 0px !important;
}
.ecm-classic-popular .popular-tab .lf-tab-box .lf-tab-item:hover {
  color: #0d775e !important;
}
.ecm-classic-popular .popular-tab .lf-tab-box .lf-tab-item.active {
  color: #0d775e !important;
  background-color: transparent !important;
  border: 0px !important;
}
.ecm-classic-popular .lf-tab-content {
  background-color: transparent !important;
}
.ecm-classic-popular .side-img {
  width: 100%;
  height: 244px;
}

.ecm-subscribe .ecm-subscribe-box {
  background: #24262b;
  color: #ffffff;
  padding: 34px 50px;
  border: none;
}

.ecm-brand .brand-slider {
  overflow: hidden;
  width: 100%;
}
.ecm-brand .glide__arrow {
  background-color: transparent;
  color: #0d775e;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease-in-out;
}
.ecm-brand .glide__arrow:hover {
  background-color: #24262b;
  color: #ffffff;
}
.ecm-brand .glide__arrow--left {
  left: 0em;
}
.ecm-brand .glide__arrow--right {
  right: 0em;
}
.ecm-brand .ecm-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0 15px;
  flex-shrink: 0;
}
.ecm-brand .ecm-brand-item .brand-logo {
  width: 100px;
  height: 100px;
}
.ecm-brand .ecm-brand-item .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ecm-brand .ecm-brand-item h5 {
  margin: 0;
  padding-top: 8px;
}

.ecm-product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  padding: 20px;
}
.ecm-product-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecm-product-modal .ecm-product-modal-content {
  overflow-y: scroll;
  width: 100%;
  max-height: calc(100vh - 40px);
  max-width: 1070px;
  background-color: #ffffff;
  padding: clamp(20px, 5.6vw, 56px);
}

.ecm-breadcrumb {
  background: url("../images/breadcrumb-bg.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}
.ecm-breadcrumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.94);
  z-index: -1;
}
.ecm-breadcrumb .ecm-breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ecm-breadcrumb .ecm-breadcrumb-list li {
  color: #24262b;
  font-size: 16px;
}
.ecm-breadcrumb .ecm-breadcrumb-list li i {
  font-size: 12px;
}
.ecm-breadcrumb .ecm-breadcrumb-list li a:hover {
  color: #0d775e;
}

.about-banner {
  width: 100%;
  background-image: url("/modules/ecommerce/storage/images/about-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-banner .about-banner-position {
  position: relative;
  height: 440px;
}
.about-banner .about-banner-position .about-banner-content {
  position: absolute;
  bottom: -70px;
  right: 0px;
  background-color: #24262b;
  padding: 24px 30px;
  color: #ffffff;
  max-width: 520px;
}
.about-banner .about-banner-position .about-banner-content h3 {
  font-size: 28px;
}

.ecm-question {
  background-color: #24262b;
  padding: 30px 0;
}
.ecm-question p {
  color: #ffffff;
}
.ecm-question p span {
  font-size: 24px;
  font-weight: 600;
}
.ecm-question .ecm-white-btn {
  display: block;
}
.ecm-question .ecm-white-btn:hover {
  background-color: #d8d8d8;
  color: #24262b;
}

.responsive-filter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  transform: translateX(-100%);
  overflow-y: scroll;
  width: 100%;
}
.responsive-filter.active {
  transform: translateX(0%);
}
.responsive-filter .res-bg {
  background-color: #ffffff;
  width: 340px;
  max-height: 100vh;
  overflow-y: auto;
}
.responsive-filter .filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.shop-main {
  background-color: #ffffff;
  padding-top: 35px;
}
.shop-main .dropdown-show-box {
  background-color: #f6f6f6 !important;
  border: 1px solid #c4c4c4 !important;
  padding: 10px;
  border-radius: 0;
}
.shop-main .dropdown-show-box a:hover {
  color: #0d775e !important;
}
.shop-main .card-view .lf-tab-box .lf-tab-item {
  background-color: transparent !important;
  width: 34px;
  height: 34px;
  border: 1px solid #24262b;
  color: #24262b !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.shop-main .card-view .lf-tab-box .lf-tab-item.active, .shop-main .card-view .lf-tab-box .lf-tab-item:hover {
  background-color: #24262b !important;
  color: #ffffff !important;
}
.shop-main .pagination-btn {
  background-color: transparent;
  padding: 8px 15px;
  color: #24262b;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f6f6f6;
}
.shop-main .pagination-btn.active, .shop-main .pagination-btn:hover {
  background-color: #f6f6f6;
  color: #24262b;
}

.size-boxs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.size-boxs .size-num {
  background-color: transparent;
  width: 34px;
  height: 34px;
  border: 1px solid #24262b;
  color: #24262b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.size-boxs .size-num.active {
  background-color: #24262b;
  color: #ffffff;
}
.size-boxs .size-num:hover {
  background-color: #0d775e;
  color: #ffffff;
}
.size-boxs .size-num:has(:checked) {
  background-color: #24262b;
  color: #ffffff;
}

.filter-category ul li .toggle {
  color: #24262b;
}
.filter-category ul li .toggle:hover, .filter-category ul li .toggle.active {
  color: #0d775e;
}
.filter-category .sub-menu li a li a:hover {
  color: #0d775e;
}
.filter-category .cate-title {
  color: #24262b;
}
.filter-category .cate-title:hover {
  color: #0d775e;
}

.filter-tags .ecm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-tags .ecm-tags .ecm-tag-btn {
  background-color: #f6f6f6;
  padding: 8px 15px;
  color: #24262b;
  transition: all 0.3s ease-in-out;
}
.filter-tags .ecm-tags .ecm-tag-btn.active {
  background-color: #24262b;
  color: #ffffff;
}
.filter-tags .ecm-tags .ecm-tag-btn:hover {
  background-color: #0d775e;
  color: #ffffff;
}
.filter-tags .ecm-tags .ecm-tag-btn:has(:checked) {
  background-color: #24262b;
  color: #ffffff;
}

.ecm-rest-btn {
  background-color: #6f5e5e;
  padding: 8px 15px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.used-tag {
  background-color: transparent;
  border: 1px solid #24262b;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.product-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}

.slider-track {
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}

input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}

input[type=range]::-ms-track {
  appearance: none;
  height: 5px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  background-color: #0d775e;
  cursor: pointer;
  pointer-events: auto;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 6px;
  width: 6px;
  cursor: pointer;
  background-color: #ffffff;
  border: 3px solid #0d775e !important;
  border-radius: 0%;
  pointer-events: auto;
  border: none;
}

input[type=range]::-ms-thumb {
  appearance: none;
  height: 12px;
  width: 12px;
  cursor: pointer;
  background-color: #0d775e;
  pointer-events: auto;
}

.tool {
  position: absolute;
  top: 5px;
  background-color: #24262b;
  padding: 2px 5px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 3px;
  transform: translateX(-50%);
  display: none;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper:hover .tool {
  display: block;
}

.ecm-filter .ecm-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.ecm-filter .ecm-filter-color .ecm-color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ecm-filter .ecm-filter-color .ecm-color-palette .ecm-color-palette-item {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
.ecm-filter .ecm-filter-color .ecm-color-palette .ecm-color-palette-item:hover::after {
  display: block;
}
.ecm-filter .ecm-filter-color .ecm-color-palette .ecm-color-palette-item:has(input:checked)::after {
  display: block;
  border-color: #0d775e;
}
.ecm-filter .ecm-filter-color .ecm-color-palette .ecm-color-palette-item::after {
  position: absolute;
  content: "";
  top: -6px;
  left: -6px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  border: 1px solid #24262b;
  display: none;
}
.ecm-filter .ecm-filter-size .ecm-size-boxs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ecm-filter .ecm-filter-size .ecm-size-boxs .ecm-size-item {
  background-color: transparent;
  width: 34px;
  height: 34px;
  border: 1px solid #24262b;
  color: #24262b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ecm-filter .ecm-filter-size .ecm-size-boxs .ecm-size-item:has(input:checked) {
  background-color: #0d775e;
  color: #ffffff;
}
.ecm-filter .ecm-filter-size .ecm-size-boxs .ecm-size-item:hover {
  background-color: #24262b;
  color: #ffffff;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item {
  margin-bottom: 16px;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item:has(.ecm-filter-category-sub-item) .ecm-filter-parent-category {
  position: relative;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item:has(.ecm-filter-category-sub-item) .ecm-filter-parent-category::after {
  position: absolute;
  content: "\f012";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 12px;
  font-family: larafont;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item .ecm-filter-parent-category {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item .ecm-filter-category-sub-item {
  display: none;
  background-color: #f5f5f5;
  padding: 5px 10px;
  margin-top: 12px;
  position: relative;
  border-radius: 5px;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item .ecm-filter-category-sub-item > li {
  margin: 5px 0;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item .ecm-filter-category-sub-item::after {
  position: absolute;
  content: "";
  top: -10px;
  left: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f5f5f5;
}
.ecm-filter .ecm-filter-category .ecm-filter-category-box .ecm-filter-category-item.active .ecm-filter-category-sub-item {
  display: block;
}
.ecm-filter .ecm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ecm-filter .ecm-tags .ecm-tag-btn {
  background-color: #f6f6f6;
  padding: 8px 15px;
  color: #24262b;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.ecm-filter .ecm-tags .ecm-tag-btn:hover {
  background-color: #24262b;
  color: #ffffff;
}
.ecm-filter .ecm-tags .ecm-tag-btn:has(:checked) {
  background-color: #0d775e;
  color: #ffffff;
}

.ecm-input {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 5px 15px;
  height: 50px;
}

.ecm-product-details {
  background-color: #ffffff;
}

.details-sale {
  background-color: #5e5cc6;
  padding: 2px 4px;
  color: #ffffff;
}

.details-img {
  background: #f6f6f6 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.quantity-count {
  background-color: #f6f6f6;
  width: 58px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-count-btn {
  background-color: #f6f6f6;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mini-img-wrapper {
  background-color: #f6f6f6;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  white-space: nowrap;
}
.mini-img-wrapper::-webkit-scrollbar {
  display: none;
}
.mini-img-wrapper .mini-img {
  min-width: 80px;
  height: 80px;
  cursor: pointer;
}
.mini-img-wrapper .mini-img.active {
  border: 2px solid #24262b;
}

.size-num {
  background-color: transparent;
  padding: 15px 35px;
  color: #24262b;
  transition: all 0.3s ease-in-out;
  border: 1px solid #24262b;
  cursor: pointer;
}
.size-num.active {
  background-color: #24262b;
  color: #ffffff;
}
.size-num:has(:checked) {
  background-color: #24262b;
  color: #ffffff;
}

.color-palette .color-palette-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.color-palette .color-palette-wrapper.active {
  border: 1px solid #24262b;
}
.color-palette .color-palette-item {
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.border-line {
  border: 1px solid #f6f6f6;
  width: 100%;
  margin-bottom: 15px;
}

.details-description .star-rating {
  margin: 0 !important;
}

.zoomable {
  position: relative;
  overflow: hidden;
}

.zoomable__img {
  transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
  transition: transform 0.15s linear;
  margin: 0 auto;
}

.zoomable--zoomed .zoomable__img {
  cursor: zoom-in;
  transform: scale(var(--zoom, 2));
}

.additional-info {
  background-color: #f6f6f6;
  padding: 35px 31px;
}
.additional-info .cashback {
  border: 2px solid #0d775e;
  padding: 17px 0;
}
.additional-info .cashback p {
  color: #0d775e;
  text-align: center;
  font-weight: 600;
}
.additional-info .benefits {
  background-color: #ffffff;
  padding: 17px 0;
  border: 2px solid #d8d8d8;
}
.additional-info .benefits .ben-title {
  color: ecm-primary;
  font-size: 13px;
  text-align: left;
}
.additional-info .benefits .ben-des {
  color: #24262b;
  font-size: 14px;
  font-weight: 500;
}
.additional-info .benefits p {
  color: #0d775e;
  text-align: center;
  font-weight: 600;
}

.save {
  border-bottom: 1px solid #d8d8d8;
}
.save p {
  color: #08779a;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.product-des-rev {
  border-bottom: 1px solid #d8d8d8;
}
.product-des-rev .tab.active {
  border-bottom: 2px solid #0d775e;
  color: #0d775e;
}

.contact-map {
  height: 400px;
}

.contact-flag {
  background-color: #f6f6f6;
  padding: 10px 12px;
  border-radius: 40px;
  display: inline-block;
}

.blog .blog-details-date {
  background-color: #f6f6f6;
  padding: 5px 10px;
}
.blog .blog-quote {
  background-color: #f6f6f6;
  padding: 24px;
  border-left: 5px solid #0d775e;
}
.blog .qoute-line {
  width: 36px;
  height: 2px;
  background-color: #24262b;
}
.blog .blog-tags {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.blog .blog-tags p {
  color: #6f5e5e;
}
.blog .comments .title {
  border-bottom: 1px solid #d8d8d8;
}
.blog .latest-post-img {
  width: 120px;
  height: 100px;
}

.ecm-def-input {
  border: 0px solid #f5f5f5;
  border-radius: 4px;
  padding: 16px 12px;
  width: 100%;
  background-color: #f5f5f5;
  outline: none;
  color: #666666;
  font-size: 14px;
}

.ecm-transparent-search {
  background-color: transparent;
  border: 1px solid #24262b;
  padding: 20px;
}

.ecm-search {
  position: relative;
}

.ecm-search-btn i.fa-search {
  color: #0d775e !important;
}

.fa-search {
  font-size: clamp(14px, 2vw, 20px) !important;
}

.wishlist {
  background-color: #ffffff !important;
  padding: 30px 0px;
}

.cart {
  background-color: #ffffff !important;
  padding: 30px 0px;
}

.ecm-table {
  overflow-x: scroll;
}
.ecm-table th {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 20px;
}
.ecm-table table tbody tr td {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px;
}
.ecm-table table tbody tr td .product-img {
  width: 80px;
  height: 80px;
  background-color: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecm-table table tbody tr td .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apply-coupon {
  position: absolute;
  top: 0;
  right: 0;
  color: #24262b;
  padding: 5px 15px;
  cursor: pointer;
}

.ecm-auth-page .ecm-auth-left {
  background-color: #f6f6f6;
  position: relative;
  z-index: 1;
}
.ecm-auth-page .ecm-auth-left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 52%;
  height: 60%;
  background: #ffffff;
  border-radius: 50% 50% 0 0;
  z-index: -2;
}
.ecm-auth-page .ecm-auth-left .ecm-auth-image {
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}
.ecm-auth-page .ecm-auth-left .ecm-auth-image img {
  padding-right: 30px;
  padding-left: 30px;
}
.ecm-auth-page .ecm-auth-right {
  background-color: #ffffff;
}

.ecm-profile-page .ecm-profile-box {
  box-shadow: 0 0 10px #d8d8d8;
  border-radius: 10px;
  padding: 20px;
}
.ecm-profile-page .ecm-profile-sidebar .ecm-profile-avatar {
  text-align: center;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 20px;
}
.ecm-profile-page .ecm-profile-sidebar .ecm-profile-tab li {
  border-bottom: 1px solid #d8d8d8;
}
.ecm-profile-page .ecm-profile-sidebar .ecm-profile-tab li a {
  padding: 15px 0;
  color: #666666;
  gap: 10px;
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.ecm-profile-page .ecm-profile-sidebar .ecm-profile-tab li a.active, .ecm-profile-page .ecm-profile-sidebar .ecm-profile-tab li a:hover {
  color: #0d775e;
  border-color: #0d775e;
  background: #f6f6f6;
  padding-left: 20px;
}

.cart {
  background-color: #ffffff !important;
  padding: 30px 0px;
}
.cart .ecm-table {
  overflow-x: scroll;
}
.cart .ecm-table table th {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 20px;
}
.cart .ecm-table table tbody tr td {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px;
}
.cart .ecm-table table tbody tr td .product-img {
  width: 80px;
  height: 80px;
  background-color: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart .ecm-table table tbody tr td .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart .apply-coupon {
  position: absolute;
  top: 0;
  right: 0;
  color: #24262b;
  padding: 5px 15px;
  cursor: pointer;
}

.checkout .lf-language {
  background-color: #f5f5f5;
  width: 100%;
  border-radius: 4px;
  padding: 16px 12px;
}
.checkout .checkout-down {
  background-color: #f3f8f7 !important;
  padding: 20px 25px;
}
.checkout .checkout-down a {
  color: #0d775e;
}
.checkout .checkout-down i {
  color: #0d775e;
  cursor: pointer;
}
.checkout .input-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.checkout .checkout-right .checkout-right-main {
  background-color: #f6f6f6;
  padding: 30px;
}
.checkout .checkout-right .checkout-right-main .checkout-img {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkout .checkout-right .checkout-right-main .checkout-img img {
  width: 50px;
  height: auto;
  object-fit: contain;
}
.checkout .checkout-right .order {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 18px;
}
.checkout .accordion-content {
  background-color: #f6f6f6;
  border-top: 1px solid #d8d8d8;
  padding: 30px;
  width: 100%;
}

/*# sourceMappingURL=app.css.map */
