@font-face {
    font-family: "Century Gothic";
    src: url("../fonts/CenturyGothic_ufont.ir.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/InterExtraLight.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/InterLight.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/InterRegular.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/InterMedium.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/InterSemiBold.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/InterBold.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/InterExtraBold.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/InterBlack.otf") format("opentype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/InterHeavy.otf") format("opentype");
}

body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
.logo {
    font-family: "Century Gothic", sans-serif;
}

.font-18 {
    font-size: 18px;
}
.font-12 {
    font-size: 12px;
}
.font-42 {
    font-size: 42px;
}
.font-14 {
    font-size: 14px;
}

/* Project Accent Color */
:root {
    --bs-pink: #d42490; /* main pink accent */
}
.bg-pink {
    background-color: var(--bs-pink) !important;
}
.text-pink {
    color: var(--bs-pink) !important;
}
.border-pink {
    border-color: var(--bs-pink) !important;
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
}

a {
    color: #101010;
}
.cursor-pointer {
    cursor: pointer;
}
/* navbar */
.top-bar {
  background-color: #f3eef3;
  color: #a63c9b;
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: solid 1px #640158;
}
.top-promotion {
  color: #9d048c;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top-promotion {
    color: #9d048c;
    font-size: 17px;
    font-weight: 500;
  }
}

.top-bar .phone-number {
  color: #1e1f22;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  display: flex;
  padding: 12px 24px 12px 24px;
  border-radius: 8px;
  background: var(--Color, #fff);
  direction: ltr;
  text-align: left;
}
.top-bar .phone-number a {
  color: #1e1f22;
}
.navbar {
  padding: 0.8rem 0;
}
.nav-item .dropdown-toggle::after {
  display: none;
}
#products-menu .dropdown {
  position: relative;
}
#products-menu .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
#products-menu .dropdown .dropdown-toggle img {
  margin-left: 10px;
  width: 20px;
}
#products-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 250px;
}
#products-menu .dropdown-menu li {
  position: relative;
  list-style-type: none;
}
#products-menu .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
#products-menu .dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
  color: #007bff;
  font-weight: bold;
}
#products-menu .dropdown-menu ul {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 200px;
}
#products-menu .dropdown-menu li:hover > ul {
  display: block;
}
#products-menu .dropdown-menu ul li {
  position: relative;
}
#products-menu .dropdown-menu ul .dropdown-item {
  padding: 10px 15px;
  color: #333;
}
#products-menu .dropdown-menu li > .dropdown-item::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  font-size: 12px;
  color: #888;
}
#products-menu .dropdown-menu ul .dropdown-item::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  font-size: 12px;
  color: #007bff;
}
#products-menu .dropdown-menu ul ul {
  right: 100%;
}
#products-menu .dropdown-menu li:hover > ul {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.icon-placeholder {
  width: 24px;
  height: 24px;
  background-color: #a63c9b;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
.icon-placeholder + .icon-placeholder {
  margin-right: 15px;
}
a.nav-link {
    text-decoration: none;
}
a.nav-link:hover {
    color: #9c028b;
}

.dropdown-item:hover {
    color: #9c028b !important;
    background: #fff !important;
}
.offcanvas-header {
  background-color: #a63c9b;
  color: #fff;
}

.navbar-brand img {
  width: 147px;
  height: 65px;
}

@media screen and (max-width: 548px) {
  .navbar-brand img {
    width: 110px;
    height: auto;
  }
  .top-bar .phone-number {
    color: #1e1f22;
    font-size: 13px;
    font-weight: 300;
    line-height: normal;
    display: flex;
    padding: 12px 7px 12px 7px;
    border-radius: 8px;
    background: var(--Color, #fff);
    direction: ltr;
    text-align: left;
  }
  .top-promotion {
    color: #9d048c;
    font-size: 15px !important;
    font-weight: 500;
  }
  .navbar {
    padding: 5px 0;
  }
}

.count-badge {
  position: absolute;
  top: -2px;
  right: 22px;
  background-color: #9c028b;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.icon-wrapper {
  position: relative;
}
.login-btn-nav {
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #9c028b;
}
.navbar-nav .nav-link {
  margin-left: 2px;
  font-family: "IRANSans", sans-serif;
  color: #fff;/*var(--Text-text, #404044);*/
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}
.login-btn-nav:hover {
  background-color: #78116d;
  color: #fff;
  text-decoration: none;
}
.offcanvas {
  background-color: #222;
}

.offcanvas .nav-link {
  color: #ddd;
}


.owl-slider {
  /*width: 100vw;*/
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
}

.owl-slider .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-slider .item img {
  width: 100%;
  height: auto;
}
/* products */
.section-title {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.product-card {
  border-radius: 8px;
  text-align: center;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  background: var(--white, #fff);
  padding-top: 5px;
}
.pro-info {
  padding: 12px;
}
.product-name, .product-name a {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 24px;
}
.product-discount-price {
  color: var(--Text-text-f, rgba(64, 64, 68, 0.6));
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: line-through;
}
.product-price {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.discount-badge {
  padding: 2px 11px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--secondary-400, #dc045b);
  color: var(--white, #fff);
  text-align: right;
  font-size: 16px;
  font-weight: 300;
}
.product-icons {
  margin-top: 10px;
}
.product-icons a {
  color: #a63c9b;
  margin: 0 10px;
  font-size: 1.2rem;
}
.product-cart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cart a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #a63c9b;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #a63c9b;
}
.hover-icons {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.product-image {
  position: relative;
  border-radius: 10px;
  width: 100%;
}
.product-image img {
    width: 100%;
    object-fit: contain;
}
.product-card:hover .hover-icons {
  display: flex;
  height: 50%;
  padding: 12px;
  align-items: end;
}
.product-card:hover {
  box-shadow: 0px 4px 12px 0px rgba(161, 142, 161, 0.16);
}

/* ////////// */
.pen-title {
  color: #333;
  margin-bottom: 0;
  text-align: center;
  text-shadow: 1px 1px 0 #000;
}

.pen-description {
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 1px 1px 0 #000;
}
.pen-description a {
  color: #333;
  text-decoration: underline;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  /* height: auto;
  max-width: 100%;*/
}

.wrap {
  /* max-width: 85.375rem;
  margin: 0 auto;*/
}

/*.image-as-background {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}*/

/*.screen-reader-text {
  height: auto;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
}
.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
  height: auto;
  width: auto;
  background-color: #000000;
  border-radius: 2px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #FFFFFF;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  left: 0.3125rem;
  line-height: normal;
  padding: 0.9375rem 1.4375rem 0.875rem;
  text-decoration: none;
  top: 0.3125rem;
  z-index: 100000;
}*/

.block-item {
  width: 100%;
  color: #333;
  float: none;
  margin-bottom: 2.1875rem;
  text-align: center;
}
article .block-item {
  background: #f6f6f6;
}
@media screen and (min-width: 40rem) {
  .block-item {
    float: right;
    display: block;
    margin-right: 2.3576520234%;
    width: 38.8211739883%;
    transition: all 0.5s ease-in-out;
  }
}
@media screen and (min-width: 64rem) {
  .block-item {
    float: right;
    display: block;
    margin-right: 1.357652%;
    width: 23%;
  }
  .block-item:nth-child(3n + 1) {
    clear: left;
  }
}
.block-item h1 {
  margin: 0;
}
.view-radio {
  display: none;
}
.view-radio + label {
  transition: all 0.2s ease-in-out;
  color: #a2a2a2;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  /* margin: 0 2.1875rem 2.1875rem 0; */
}
.view-radio + label:hover {
  color: #333;
}

.view-radio:checked + label {
  color: #333;
}

.list-view-radio:checked ~ .content-container .block-item {
  width: 100%;
  margin-right: 0;
  transition: all 1s ease-in-out;
  text-align: right;
}
@media screen and (min-width: 48rem) {
  .list-view-radio:checked ~ .content-container .block-item {
    min-height: 11rem;
    padding: 9px;
  }
}
.list-view-radio:checked ~ .content-container .block-item img {
  height: 7rem;
  width: 7rem;
  float: right;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 48rem) {
  .list-view-radio:checked ~ .content-container .block-item img {
    height: 10.75rem;
    width: 10.75rem;
  }
  .list-view-radio:checked
    ~ .content-container
    .block-item
    .pro-info
    .justify-content-between {
    width: 30%;
  }
  .list-view-radio:checked
    ~ .content-container
    .product-card:hover
    .hover-icons {
    display: none;
  }
}
.list-view-radio:checked ~ .content-container .block-item .entry-content {
  overflow: hidden;
}

.list-view-radio:checked
  ~ .custom-view-filter-container
  .custom-view-toggle
  .list-lable {
  background-color: #a63c9b;
  color: #fff;
}
.grid-view-radio:checked
  ~ .custom-view-filter-container
  .custom-view-toggle
  .grid-lable {
  background-color: #a63c9b;
  color: #fff;
}

.custom-view-filter-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
  margin: 10px 24px;
}
@media (max-width: 767px) {
  .custom-view-filter-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    margin: 10px 0px;
  }
}

.filter-mob svg {
  width: 42px;
  height: 37px;
}
.filter-mob {
  cursor: pointer;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  border-radius: 6px;
}
.custom-view-toggle {
  display: flex;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  overflow: hidden;
}

.view-radio {
  display: none;
}

.custom-view-label {
  padding: 0.5rem 0.75rem;
  background-color: #fff;
  cursor: pointer;
  color: #595357;
}

.custom-sort-dropdown {
  position: relative;
  font-size: 14px;
}

.custom-dropdown-toggle {
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #595357;
  height: 42px;
}

.custom-dropdown-icon {
  font-size: 0.7rem;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: none;
  z-index: 10;
  list-style: none;
  padding: 0;
}

.custom-dropdown-menu li {
  padding: 0.5rem 1rem;
  color: #595357;
  cursor: pointer;
}

.custom-dropdown-menu li:hover {
  background-color: #f1f1f1;
}

.custom-sort-dropdown:hover .custom-dropdown-menu {
  display: block;
}

/* /////////// */
/* category */

.category-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img {
  transform: scale(1.1);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.category-card {
  border-radius: 8px;
  text-align: center;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  background: var(--white, #fff);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.product-info {
  position: absolute;
  color: white;
  transition: opacity 0.5s ease;
}
.info-right {
  bottom: 45px;
  right: 52px;
}
.info-left {
  bottom: 45px;
  left: 52px;
}

.product-info h5 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.product-info span {
  color: var(--white, #fff);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 7px;
}
.product-info a {
  color: var(--white, #fff);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  padding-top: 10px;
}
/* about */

.about-section {
  background: linear-gradient(90deg, #fae0cf 0%, #f4b8b8 51.67%, #d39595 100%);
  padding: 40px 0 14px 0px;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-container img {
  max-width: 100%;
  position: relative;
  margin-top: -138px;
}
.about-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.about-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
/* article */

.owl-article .card {
  border-radius: 8px;
  border: 1px solid var(--Text-text-f, rgba(64, 64, 68, 0.6));
  background: var(--white, #fff);
}
.owl-article .card-title {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.owl-article .card-text {
  overflow: hidden;
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.owl-article .card-img-top {
  border: solid 0px;
  border-radius: 8px;
  height: 243px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .owl-article .card-img-top {
    height: 140px;
  }
}

.owl-article .card-footer a {
  color: var(--Text-text-f, rgba(64, 64, 68, 0.6));
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.owl-article .card-footer {
  border-top: solid 0px;
  background: #fff;
}

/* review */
.customer-reviews {
  background: #f7eff5;
  background-image: url("../assets/images/rbg.png");
  background-position: right;
  background-repeat: no-repeat;
}
.customer-reviews h2 {
  color: var(--Text-text, #404044);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.review-card {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--Text-text-f, rgba(64, 64, 68, 0.6));
  background: var(--white, #fff);
  text-align: right;
}
.customer-reviews .owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
}

.customer-reviews .owl-nav .owl-prev {
  left: 2%;
}

.customer-reviews .owl-nav .owl-next {
  right: 2%;
}

.rating {
  font-size: 20px;
  color: #ffd700;
  display: inline-flex;
}
.rating img {
  width: 22px;
  height: 22px;
}
.review-text {
  color: var(--Text-text, #404044);

  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* features section */
.lc-prefooter {
    background:#161616;
}
.feature-item {
    cursor:default;
    user-select:text;
}
.fi {
    position:relative;
    display:inline-grid;
    place-items:center;
    width:54px;
    height:54px;
}
.fi i {
    font-size:42px;
    color:#fff;
    line-height:1;
}
.fi .accent {
    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--lc-pink);
    bottom:0;
    inset-inline-start:0;
}
.lc-prefooter h6 {
    font-size:1.1rem;
}
.lc-prefooter .text-secondary {
    color:#9aa0b4 !important;
}

@media (min-width: 768px){
    .feature-item {
        justify-content:center;
    }
}

/****************** product page ****************/
.breadcrumb-container {
  padding: 10px 0;
  font-size: 14px;
  color: #6c757d;
  direction: ltr;
  text-align: center;
}

.breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}

.breadcrumb-item {
  position: relative;
  padding: 0 10px;
}

.breadcrumb-item:not(:last-child)::before {
  content: "›";
  position: absolute;
  right: -5px;
  color: #b3b3b3;
}
.breadcrumb-item:last-child::before {
  content: " ";
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--Text-text-f, rgba(64, 64, 68, 0.6));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumb-item a:hover {
  color: #2a2929;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #b3b3b3;
}

.product-gallery {
  /* border: 1px solid #ddd; */
  padding: 20px;
  border-radius: 8px;
  width: 100%;
}

.main-image {
  text-align: center;
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  /* max-width: 400px; */
  cursor: zoom-in;
}

.thumbnail-images .item {
  display: inline-block;
  margin-right: 5px;
}

.thumbnail-images img {
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail-images img:hover,
.thumbnail-images .active-thumbnail {
  border-color: #8b008b;
}

.product-gallery {
  position: relative;
  display: inline-block;
}

.zoom-icon {
  position: absolute;
  top: 70%;
  right: 37px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 11px;
  line-height: 1;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.zoom-icon i {
  font-size: 24px;
  color: #333;
}

.main-image img {
  width: 100%;
  /* max-width: 400px; */
}
.main-image {
  border: 1px solid #ddd;
}
.gallery-discount-badge {
  position: absolute;
  top: 35px;
  left: 35px;
  background-color: #d81b60;
  color: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.product-title {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.product-description {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.color-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.color-options li {
  list-style-type: none;
}
.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-option input {
  display: none;
}
.color-option .checkmark {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
}
.color-option input:checked + .checkmark {
  border: 4px solid #a0276f;
  padding: 2px;
}
.price-section {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  color: var(--primary-base, #9c028b);
  font-size: 21px;
  line-height: normal;
  font-weight: bold;
}

.old-price {
  color: var(--Text-text-f, rgba(64, 64, 68, 0.6));
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-decoration: line-through;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-button {
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: white;
  font-size: 18px;
}

.add-to-cart {
  background-color: #9c028b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  /* display: flex; */
  /* align-items: center; */
  gap: 10px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
}

.quantity-btn {
  width: 40px;
  height: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#increase {
  border-right: 1px solid #40404433;
}
#decrease {
  border-left: 1px solid #40404433;
}

#quantity {
  width: 40px;
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.quantity-label {
  font-size: 16px;
  color: #404044;
}
.product-meta {
  font-size: 14px;
  color: #333;
  border-top: solid 1px rgba(64, 64, 68, 0.2);
}

.product-meta .category,
.product-meta .tags,
.product-meta .share {
  margin-bottom: 10px;
}

.product-meta span {
  font-weight: bold;
  color: #555;
}

.product-meta a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
  font-size: 16px;
}

.product-meta .share a {
  font-size: 16px;
  margin-right: 10px;
}

.product-meta .share a i {
  color: #333;
}

/* Tab styling */
.tabs-container {
  margin-top: 20px;
}

.tabs {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.tab-link {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: var(--Text-text, #404044);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tab-link.active {
  color: var(--primary-base, #9c028b);
  border-bottom: 2px solid #9c028b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tab-content {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
}

.tab-content.active {
  display: block;
}

/* Responsive styling */
@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-link {
    width: 100%;
    text-align: right;
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }

  .tab-link.active {
    border-bottom: 2px solid #7e1e83;
  }
}

.product-table {
  width: 100%;
  margin-top: 20px;
}

.product-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}

.product-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.product-table td:first-child {
  background-color: #f5f5f5;
  font-weight: bold;
  width: 40%;
}

.product-table td:last-child {
  width: 60%;
}

.review-section {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.review-info h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.review-info p {
  font-size: 14px;
  color: #777;
}

.comment-form p {
  font-size: 14px;
  color: #333;
}

.form-note {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.rating {
  margin-top: 15px;
}

.stars {
  color: #ddd;
  font-size: 20px;
  cursor: pointer;
  line-height: 2.27;
}

.stars span:hover,
.stars span:hover ~ span {
  color: #ffc107;
}

.comment-form label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.comment-form textarea {
  width: 100%;
  height: 100px;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.form-group label {
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.submit-button {
  background-color: #800080;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

.comment {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}

.comment-author {
  font-weight: bold;
}

.comment-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
}

.comment-content {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.comment-rating {
  color: #ffc107;
  margin-top: 5px;
  font-size: 16px;
}

.comment-actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.comment-actions span {
  font-size: 14px;
  color: #555;
}

.like-button,
.dislike-button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin: 0 5px;
  color: #666;
}

.like-button:hover,
.dislike-button:hover {
  color: #333;
}

.like-count,
.dislike-count {
  font-size: 14px;
  color: #666;
  margin-right: 5px;
}
.comment-rating i {
  color: #ffd700;
  font-size: 18px;
  margin-right: 2px;
}
.page-header {
  height: 252px;
  background-image: url(../assets/images/page-header.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .page-header {
    height: auto;
    background-image: none;
    background: #f7eff5;
  }
}

/* product category page */

.filter-section {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 650px) {
  .filter-section {
    border: none;
  }
  .modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * 0.5)
      calc(var(--bs-modal-header-padding-x) * 0.5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y))
      calc(15.5 * var(--bs-modal-header-padding-x))
      calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  }
}
.filter-title {
  font-size: 18px;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #4a4a4a;
  cursor: pointer;
  position: relative;
  padding: 5px 0;
}

.filter-header .toggle-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.filter-group.open .toggle-icon {
  transform: rotate(180deg);
}

.filter-content {
  display: none;
  padding: 10px 0;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list > li {
  padding: 5px 10px;
  position: relative;
  cursor: pointer;
}

.category-list .subcategory-list {
  list-style: none;
  padding: 0;
  margin-top: 5px;
  padding-right: 15px;
  display: none;
  border-right: 2px solid #eee;
}
.category-list a {
    color: #384045;
}
.category-list a:hover {
    color: #333;
}
.category-list .toggle-icon {
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-block;
  float: right;
}

.category-list .toggle-icon.open svg {
  transform: rotate(180deg);
}

.filter-content .color-option {
  width: 24px;
  height: 24px;
}

.color-options {
  display: flex;
  gap: 5px;
  padding: 10px 0;
}

.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}

.color-circle.selected {
  border-color: #9c028b;
}

.price-range {
  width: 100%;
  text-align: center;
}

.price-inputs {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.price-from,
.price-to {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.price-inputs input {
  width: 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: none;
  background-color: transparent;
  color: #333;
}

.price-slider {
  margin: 15px 0;
}

.ui-slider .ui-slider-handle {
  background-color: #9c028b;
  border-radius: 50%;
  border: 2px solid #9c028b;
  height: 18px;
  width: 18px;
}

.ui-slider-range {
  background-color: #9c028b;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
  float: left;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider.round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider.round:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #9c028b;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

/* ////////map///////// */

.selectormap .st0 {
  fill: #f3eef3;
}
.selectormap {
  padding: 10px;
}
.selectormap .st0 {
  fill: #f3eef3;
  stroke-width: 3px;
  stroke: #4f494e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  cursor: pointer;
  transition: 0.7s;
}
.selectormap .st0:hover {
  fill: #70e572;

  transition: 0.7s;
}
.selectormap svg {
  height: auto;
  width: 80%;
  margin: 0 10%;
}
#selectedprovince {
  position: fixed;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 7px;
  border-radius: 4px;
  pointer-events: none;
  transform: scaleX(0);
  transition: transform 0.5s;
}
#selectedprovince.visible {
  transform: scaleX(1);
  transition: transform 0.5s;
}
#selectedprovince:after {
  content: " ";
  position: absolute;
  top: 28px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5) transparent transparent;
}
#googlemapapi {
  width: 100%;
  padding-bottom: 56.25%;
  margin: 25px 0 0 0;
}
.addresses {
  padding: 25px 35px;
  margin: 25px 0;
  border-top: 1px solid gray;
  position: relative;
}
.addresses .lists {
  padding: 35px 0 75px;
  width: 100%;
  background: white;
}
.addresses .lists > .title {
  padding: 0 15px;
}
.addresses .lists .center-category {
  margin-top: 35px;
  padding: 0 15px;
}
.addresses .lists .center-category .title {
  color: white;
  background: #39d6bb;
  padding: 5px;
  text-align: center;
}
.addresses .lists .center-category table {
  font-size: 10px;
  color: black;
  border: 1px solid #bababa;
  width: 100%;
  min-width: 500px;
}
.addresses .lists .center-category table * {
  border: 1px solid #d3d3d3;
}
.addresses .lists .center-category table thead {
  color: #bababa;
}
.addresses .lists .center-category table thead tr th {
  text-align: center;
  padding: 5px;
}
.addresses .lists .center-category table tbody {
  color: #6d6d6d;
}
.addresses .lists .center-category table tbody tr td {
  padding: 5px;
}
.addresses .lists .center-category table tbody tr td:nth-of-type(3),
.addresses .lists .center-category table tbody tr td:nth-of-type(4) {
  text-align: center;
}
.addresses .lists .center-category table tbody tr td:nth-of-type(5) {
  text-align: left;
}
.addresses .lists .center-category .table {
  overflow: auto;
}
.addresses .lists a {
  float: left;
  font-size: 12px;
  margin: 20px 15px;
  border-radius: 5px;
  padding: 7px;
  background: #ffb901;
  color: black;
}
.guide {
  text-align: center;
  font-weight: 600;
}

path.st0.active-dealers {
  fill: var(--secondary-100, #c6ffc7);
  stroke-width: 3px;
  stroke: #4f494e;
}

#info-box {
  position: absolute;
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  background: var(--white, #fff);
  padding: 12px 12px 0 12px;
  display: none;
  z-index: 10;
}

#province-name {
  color: var(--Text-text, #404044);
  text-align: right;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#representatives-count {
  color: var(--Text-text, #404044);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hierarchical-search-container {
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  background: var(--white, #fff);
  box-shadow: 0px 4px 12px 0px rgba(161, 142, 161, 0.16);
}

.hierarchical-search-container h6 {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hierarchical-search-container label {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 13px;
}

.hierarchical-custom-select {
  appearance: none;
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.2));
  background: var(--white, #fff);
  height: 48px;
}

.dropdown-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
  font-size: 1rem;
}

.hierarchical-custom-select:focus {
  box-shadow: none;
  border-color: #ced4da;
}
.dealer-count {
  color: var(--Text-text, #404044);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}


.branch-card {
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.20));
  background: var(--white, #FFF);
}

.branch-card:hover {
  border-radius: 8px;
  border: 1px solid var(--line, rgba(64, 64, 68, 0.20));
  background: var(--white, #FFF);
  box-shadow: 0px 4px 12px 0px rgba(161, 142, 161, 0.16);
}

.branch-card .branch-title {
  font-size: 1rem;
  color: #333;
}

.branch-card .branch-name {
  font-size: 0.9rem;
  color: #555;
}

.branch-card .branch-address-title,
.branch-card .branch-address {
  font-size: 0.9rem;
  color: #555;
}

.branch-card .branch-navigation .branch-icon {
  width: 24px;
  height: 24px;
}

.branch-card .navigation-label {
  font-size: 0.9rem;
  color: #333;
}
.list-ordered-box {
    counter-reset: item;
    list-style: none;
    --li-pl: 0;
    --list-mb: 0;
}
.list-ordered-box .list-icon {
    flex: 0 0 auto;
    margin-left: 10px;
    vertical-align: middle;
    text-align: center;
    transition: inherit;
}
.list-ordered-box .list-icon {
    min-width: 1.85em;
    height: 1.85em;
    line-height: 1.85em;
    color: #333333;
    background-color: #f4f4f4;
    display: inline-block;
    margin-bottom: 8px;
}
.list-ordered-box .list-icon:before {
    content: counter(item) ".";
    counter-increment: item;
}
#line-breadcrumb .breadcrumbs {
    border: 0 !important;
    padding: 0 !important;
}
#line-breadcrumb .breadcrumbs > * {
    float: right !important;
    font-size: 0.7rem !important;
    font-weight: 400;
    line-height: 2.17;
}
#line-breadcrumb .breadcrumb a {
    color: #81858b !important;
}
#line-breadcrumb .breadcrumbs > * {
  float: right !important;
}
#line-breadcrumb .breadcrumbs li {
  list-style: none;
}
.blog-section::after {
    content: '';
    background-color: #da1414;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 206px;
}
.blog-section .title-section {
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}
.owl-blog .item {
    border: 1px solid #ccd0d7;
    border-radius: 15px;
    background-color: #fff;
}
.item__txt {
    color: #3d3d3d;
    min-height: 80px;
    margin-top: 10px;
    padding: 0 10px 10px;
    font-size: 14px;
}
.item__txt, article h2, article h3, article h4, article h5, article h6 {
    font-weight: 600;
}
.main__last__post .news-name {
    color: #000;
    font-size: 14px;
    min-height: 80px;
    line-height: 1.6;
}
/*********************** Panel *****************************/
.crd-form .selection ,.select2-results{
  text-align: right;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
#column-left {
  border: 1px solid #e0e0e2;
  border-radius: 15px;
}
.link-bag{
  color: #19bfd3;
}
.detail-cm span {
  color: #999ca1;
  font-size: 12px;
  position: relative;
  font-weight:300;
}
.n-user {
  font-weight: 700;
  font-size: 15px;
}
.crd-info{
  border: 1px solid #e0e0e2;
  border-radius: 15px;
  padding: 20px;
}
.group-items {
    padding: 0;
}
.group-items li {
  display: block;
}
.group-items li a {
    color: #000;
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #f0f0f1;
    display: block;
}
.group-items li a span {
    padding: 9px 0;
    padding-right: 20px;
    border-right: 4px solid transparent;
}
.group-items li a.active span {
    padding: 8px 0;
    padding-right: 20px;
    border-right: 4px solid red;
}
.edit-cm {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 12px;
  color: #959597;
}
.card.crd-cm {
  border-color: #f0f0f1;
  border-radius: 15px;
}
.text-h5 {
  font-size: 14px;
  font-weight: 600;
}
.red-line {
  display: inline-block;
  width: 4rem;
  height: .2rem;
  background-color: #da1414;
}
.top-link {
  flex: 1 1 0;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-start;
}
#myTab-com button {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 4px solid #fff;
  color:#000;
}
#myTab-com .nav-tabs {
  border-bottom: none;
}
#myTab-com button.active {
  border-bottom-color: #da1414 !important;
  border-radius: 0 0 5px 5px;
  color: #da1414;
}
hr {
  background-color: #f0f0f1;
  opacity: 1 !important;
}
.text-neutral-700 {
  color: #505171;
}
.text-subtitle-strong {
  font-weight: 700;
  line-height: 2.15;
  font-size: 1rem;
}
.rw-link .top-link:not(:first-child) {
  border-right: 1px solid #f0f0f1;
}
.star-rating__input:checked ~ label svg {
fill: #f9a825 !important;
}
.owl-list .item::after {
  border-left: 1px solid #eee;
  content:'';
  top:0;
  left:-10px;
  position:absolute;
  height:100%;
  width:1px;
}
.lbl-sale {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.owl-list .item-pro{
  padding-top: 15px;
}
/*********************** End Panel ****************************/
.btn-no-effect {
    border: 0;
    background: none;
}
.product-card .pro-info .product-name {
    min-height: 72px;
}
.address a {
    color: #404044;
}
.pagination {
    direction: ltr;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    justify-content: flex-start !important;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    background-color: white;
    color: black;
    border: 1px solid lightgray;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
}


.pagination .page-item:first-child .page-link {
    border-radius: 0px 5px 5px 0px;
}


.pagination .page-item:last-child .page-link {
    border-radius: 5px 0px 0px 5px;
    color: gray;
}


.pagination .page-item.active .page-link {
    background-color: #9c028b;
    color: white;
    border: none;
    font-weight: bold;
}
.compare.compare-link a,
.favo.favo-link a {
  display: block;
}
/* Compare */
/*compare start*/
.compare-section{padding:0 }
.compare-products>ul{display:block;width:100%;position:relative;margin:0 auto}
.compare-singleitem a{color:#0071e3}
.compare-singleitem i.icon-white-close{position:absolute;top:10px;left:10px;z-index:999;display:none;cursor:pointer}
.compare-singleitem:hover i.icon-white-close{display:block}
.compare-thumbs-container{overflow:hidden;direction:ltr}
.compare-product-img{position:relative;height:150px;overflow:hidden;-ms-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto}
.compare-product-img img{width:150px}
.compare-thumbs-container .compare-item{height:90px;display:block;overflow:hidden}
.compare-thumbs-container .product-title{margin:10px 0 15px;height:75px;overflow:hidden}
.compare-thumbs-container .compare-item .product-title h2.firstTitle,.compare-thumbs-container .compare-item .product-title h2.secondTitle{-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.compare-thumbs-container .product-title h2{text-align:center;font-size:13px;font-weight:700}
.compare-thumbs-container .compare-item .product-title .showname{max-height:40px;overflow:hidden;opacity:0;position:absolute}
.compare-thumbs-container .compare-item .product-title .showname div{margin:0;padding:0;border:0}
.forceleft{direction:ltr}
.compare-thumbs-container .rating{height:20px;text-align:center;margin-top:0;display:none}
.compare-thumbs-container .rating .txt{display:inline-block;color:#aeafb0;font-size:11px;text-align:right;margin-left:5px}
.compare-thumbs-container .rating .gray{display:inline-block;background:url(../../vendor/images/stars-mini.png) 0 -14px repeat-x;height:14px;margin:0 auto;position:relative;width:70px;direction:ltr;color:gray;top:5px;left:0}
.compare-thumbs-container .rating .red{background:url(../../vendor/images/stars-mini.png) repeat-x;height:14px}
.compare-thumbs-container .oldprice{width:100%;height:15px;display:block;border-radius:11px;line-height:17px;margin-bottom:10px;margin-top:5px}
.compare-thumbs-container .oldprice span{text-align:center;color:#9f9f9f;font-size:11px;text-decoration:line-through;width:100%;display:block}
.compare-thumbs-container .final-price{bottom:0;color:#0071e3;display:block;font-size:18px;right:0;text-align:center;width:100%}
.compare-thumbs-container .currency{vertical-align:1px;font-size:10px;margin-right:5px}
.compare-newitem{width:220px;margin-right:20px;padding:60px 0 0}
.compare-newitem-container{height:220px;background-color:#f3f4f6;border-radius:11px;border:1px solid #4d4d4d;position:relative;padding:0 15px}
.compare-items-container{margin-top:10px;clear:both}
.compare-items-container .compare-table .compare-table-row .table-item-header{padding:0 15px;background-color:#f3f4f6;width:129px;border:1px solid #e1dfe0;border-radius:0 2px 2px 0;font-size:13px;line-height:23px}
.compare-items-container .compare-table .compare-table-row .table-item.active{background-color:#f2fdff}
.compare-items-container .compare-table .compare-table-row .table-item{border:1px solid #e1dfe0;width:239px;padding:15px 10px 15px 5px;font-size:11px;vertical-align:top}
.compare-items-container .compare-table .compare-table-row .table-item i.icon{position:relative;top:3px;height:18px}
.compare-items-container .compare-table .compare-table-row .table-item i+span{margin-right:5px}
.icon-arrow-top{background-position:-222px -83px}
.compare-section.clearfix .compare-items-container .title{background-color:#f2f4f5;width:100%;height:40px;margin:10px 0;border-radius:11px;cursor:pointer;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:relative}
.compare-section.clearfix .compare-items-container .title span .icon{position:absolute;top:5px;margin-left:5px;right:5px}
.compare-section.clearfix .compare-items-container .title span h3{float:right;direction:ltr;line-height:15px;font-size:14px;padding-right:25px}
.compare-items-container{width:100%}
.compare-section.clearfix .compare-items-container .title span h3{float:right;color:#000;font-size:16px;line-height:34px;margin-bottom:25px;letter-spacing:-.3px;position:absolute;padding-right:25px;font-weight:700}
.compare-section.clearfix .compare-items-container .title{background-color:transparent;padding-right:10px}

.compare-products>ul{right:0;top:0;list-style:none;padding:0;margin-bottom:5px;background-color:#fff;box-shadow:0 12px 12px 0 hsla(0,0%,71%,.11);border:1px solid #e4e4e4;padding-bottom:28px;border-bottom:2px solid #ea2e42}
.compare-products .compare-singleitem{text-align:center;float:right;padding:40px 10px 20px;border-radius:0;height:365px;position:relative;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;width:25%;border-left:1px solid #e4e4e4}
.compare-newitem{width:25%;margin-right:0;padding:0}
.compare-newitem-container{border-radius:19px;border:4px dashed #b5b5b5;background:0 0;max-width:270px;display:block;padding:35px;font-size:15px;line-height:1.467;color:#b5b5b5;cursor:pointer;margin:23px auto}
.compare-singleitem .dk-button-container .dk-button-label .dk-button-labelname{line-height:38px;padding-right:0;font-size:13px;font-weight:700}
.add-product::before{content: "\f055";font-size: 84px;display: block;margin-bottom: 15px;font-style: normal;font-variant: normal;font-weight: 600;text-decoration: none;text-transform: none;line-height: 1;font-family: "Font Awesome 5 Free";color: #b5b5b5;cursor: pointer;}
.compare-singleitem i.icon-white-close{display:block}
.btn.product-dle-btn{font-size:14px;line-height:32px;border-radius:11px;background:#5c677d;padding:5px 0;color:#fff;display:block;max-width:265px;height:45px;position:relative;text-align:center;font-weight:700;margin:12px auto}
.compare-singleitem.compare-newitem .dk-button-container .dk-button-label{font-size:16px}
.compare-singleitem .woocommerce-Price-amount{font-size:18px;line-height:26px;color:#000;letter-spacing:0}
.compare-newitem-container{height:auto}
.content-box{-moz-border-radius:0;-webkit-border-radius:0;-ms-border-radius:0;padding:0;border:none;background:0 0;-webkit-box-shadow:none;-ms-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none}
.compare-singleitem i.icon-white-close{z-index:1}
.icon-white-close::before{font-size:11px}
.modal.in .modal-dialog{z-index:99999999}
.compare-singleitem .dk-button-container .dk-button .dk-button-label{display: block;background-color:#7a7a7a;border-radius:11px;padding:4px 0;color:#fff}
.compare-singleitem .dk-button-container .dk-button{background-color:transparent}
.compare-singleitem::after{width:0;height:0;border-style:solid;border-width:0 10px 10px;border-color:transparent transparent #ea2e42;position:absolute;bottom: -29px;left:50%;margin-left:-5px;content:""}
.compare-singleitem.compare-newitem::after{display:none}
.comparebox-accordion-panel .compare-table{width:100%;position:relative}
.compare-table td,.compare-table th{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:10px 0}
.compare-items-container .compare-table .compare-table-row .table-item-header h4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;font-size:15px;line-height:1.692;padding:9px 26px;font-weight:600;width:100%}
.compare-items-container .compare-table .compare-table-row .table-item-header{padding:0;background-color:transparent;width:100%;border:none;border-radius:0;font-size:13px;line-height:23px;margin:0}
.compare-items-container .compare-table .compare-table-row .table-item{border:none;width:25%;padding:10px;font-size:15px;line-height:2;color:#000;letter-spacing:-.3px;min-height:47px;position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;float:right;background:#f0f0f0;vertical-align:middle;border-radius:0;border-left:1px solid #e4e4e4;font-weight:500}
.modal-backdrop{z-index:1003}

#productCompareModal .modal-body{position:relative;width:100%;padding:17px 17px 0;overflow:auto;height:465px}
#productCompareModal .modal-header{padding:15px;border-bottom:1px solid #dedede;padding:19px 37px 20px 63px}
#productModalLongTitle h5{font-weight:400;font-size:14px;line-height:0}
#keyword::before{content:"\E090";position:absolute;right:15px;top:13px;font-size:17px;}
#keyword{border-radius:11px;border:1px solid #e3e3e3 !important;color:#717171;font-size:14px;line-height:1.571;padding:11px 12px;width:60%;display:table-column-group;float:right;height:45px;border-left-width:0}
#productModalLongTitle{display:block;float:right;line-height:41px;padding-left:40px;color:#2b2e38;font-size:20px}
#brand{border:1px solid #e3e3e3;-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%;height:45px;font-size:16px;color:#888;padding-right:10px;border-radius:11px 0 0 11px}
#productCompareModal .close{display:block;position:absolute;left:20px;top:20px;opacity:1;text-shadow:none}
#productCompareModal input[type=submit]{display:none}
#productCompareModal .modal-body a{color: #333;width:100%;height:250px;border-radius:11px;background-color:#fff;border:1px solid #e9e9e9;text-align:center;display:block;cursor:pointer;position:relative;-ms-flex:0 0 32%;flex:0 0 32%;max-width:32%;float:right;margin:0 5px 10px;padding:20px}
#productCompareModal .modal-body img{vertical-align:middle;margin:0 auto;display:block;width:auto;height:150px}
#productCompareModal .modal-body span{font-size:15px;line-height:20px;display:block;padding:0 18px;max-height:44px;overflow:hidden;margin-top:10px}
.compare-singleitem .matrix_wolfold-price .woocommerce-Price-amount{font-size:15px;display:contents;line-height:0;color:#b0b0b0}
.compare-thumbs-container .compare-item{height:72px}
.nav-item .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}
.nav-item .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mini-cart {
  display: none;
  position: absolute;
  top: 60px;
  left: 20px;
  width: 320px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1000;
  padding: 15px;
  font-family: 'IRANSans', sans-serif;
}
.mini-cart.show {
  display: block;
}
.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.mini-cart-products {
  max-height: 280px;
  overflow-y: auto;
}
.mini-cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  margin: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.mini-cart-product-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
}
.mini-cart-product-thumbnail a {
  display: block;
  position: relative;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mini-cart-product-thumbnail a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  border-radius: 10px;
  opacity: 0.03;
  z-index: 10;
}
.mini-cart-product-thumbnail img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 10px;
}
.mini-cart-product-detail {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex: 1;
  padding-right: 15px;
  position: relative;
}
.mini-cart-product-brand {
  font-weight: 700;
  margin-bottom: 5px;
}
.mini-cart-product-detail a {
  color: #212121;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}
.mini-cart-product-title {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 700;
}
.mini-cart-purchase-info {
  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;
}
.mini-cart-product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}
.mini-cart-product-price {
  font-size: 14px;
  font-weight: bold;
  color: #ed1944;
}
.mini-cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  margin: 10px;
}
.currency {
  font-size: 12px;
}
#dropdownMenuButton1 {
  background-color: transparent !important;
  border: none !important;
  position: relative;
  padding: 0 !important;
  border-radius: 11px;
}
.mini-cart-product-remove {
  position: absolute;
  top: -2px;
  left: -2px;
  border: 0;
  background-color: transparent;
  z-index: 1;
}
.mini-cart-product-remove i {
  color: #000 !important;
}
.mini-cart-footer {
  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 10px 5px 10px;
  border-top: 4px solid #f6f6f6;
}
.mini-cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-weight: bold;
}
.mini-cart-total-label {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #888;
}
.mini-cart-total-value {
  font-size: 18px;
  font-weight: bold;
}
.mini-cart .btn-primary {
  color: #fff;
  background-color: #ed1944;
  border-color:#ed1944;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.mini-cart .btn-primary:hover ,.btn-primary:focus{
  color: #fff !important;
  background-color: #df0f39;
  border-color:#df0f39;
}
.mini-cart-product-brand a {
  font-size: 12px;
  font-weight: 300;
  padding-left: 10px;
  display: block;
}
.mini-cart .btn.btn-link.px-0 {
  font-size: 13px;
  color: #19bfd3;
}
@media screen and (min-width: 768px) {
    .shop-link:hover .dropdown-menu {
      display: block;
      position: absolute;
      inset: 0px auto auto 0px;
      margin: 0px;
        margin-bottom: 0px;
      margin-bottom: 0px;
      transform: translate(12px, 54px);
    }
    .thumb-product3 .thumbnail {
      height: 70px;
      overflow: hidden;
    }
}
.owl-prev {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    padding: 5px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
}
.owl-next {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    padding: 5px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
}
.social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.social-icons a img {
    width: 40px;
    height: 40px;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover img {
    transform: scale(1.1);
}
.social-icons:hover a:not(:hover) img {
    filter: blur(3px);
    opacity: 0.5;
}
.social-icons a:hover img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    border: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: #9c028b;
}
.dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-15px) !important;
    transition: all 0.3s ease !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.phone-number:hover {
    background: #ffffffbd;
}
.font-08rem {
    font-size: 0.8rem;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.search-container .dropdown-content {
  display: none;
}

.modal-header {
  text-align: center;
  font-family: 'IRANSans', sans-serif;
}

.modal-header h5 {
  font-size: 20px;
  font-weight: bold;
}

.modal-header hr {
  margin: 0;
  border-top: 1px solid #ddd;
}

.modal-body {
  background-color: #f9f9f9;
}

.modern-search-container {
  border-radius: 8px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.input-group {
  display: flex;
  align-items: center;
  border-radius: 8px;
  gap: 10px;
}
.search-input {
  flex: 2;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'IRANSans', sans-serif;
}
.search-category {
  flex: 1;
  appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"%3E%3Cpath fill="gray" d="M7 10l5 5 5-5H7z"%3E%3C/path%3E%3C/svg%3E'); /* فلش سفارشی */
  background-repeat: no-repeat;
  background-position: left 10px center;
  border: 1px solid #ddd;
  padding: 12px 10px 12px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'IRANSans', sans-serif;
}
.search-button {
  flex: 0.5;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
}
.search-button:hover {
  background-color: #0056b3;
}
#search-results {
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
}
#search-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#search-results li {
  padding: 10px 15px;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#search-results li:last-child {
  border-bottom: none;
}
#search-results li:hover {
  background-color: #f9f9f9;
}
#search-results li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
#search-results li a:hover {
  color: #007bff;
}
#search-results .no-results {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #888;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.view-all-link {
  font-size: 14px;
  font-weight: 500;
  color: #ed1944;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.view-all-link img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.view-all-link:hover {
  color: #df0f39;
}
.view-all-link:hover img {
  transform: translateX(5px);
}
@media screen and (max-width: 991.99px) {
  .icon-toolbar i {
    font-size: 21px;
  }
  body {
    padding-bottom: 66px !important;
  }
  .toolbar {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 0px 5px #868484;
    width: 100% !important;
    align-items: center;
    z-index: 100;
  }
  .toolbar ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-bottom: 0 !important;
  }
  .toolbar li {
    flex-grow: 1;
    text-align: center;
    position: relative;
  }
  .toolbar li a {
    display: block;
    color: #111;
  }
  .search-result {
    background-color: #fff;
    box-shadow: 0px 6px 8px #828080;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    height: 150px;
    overflow-y: auto;
    z-index: 2;
  }
  .search-result-list li {
    list-style: none;
    text-align: right;
    line-height: 2;
    border-bottom: 1px solid #eee;
    padding: 5px;
    font-size: 13px;
  }
  .search-result-list li a {
    color: #000;
  }
  .owl-stage{
    padding-right: 0 !important;
  }
  .owl-special .owl-stage {
    padding-right: 0 !important;
  }
  .shop-link {
    background-color: #fff;
    border: 1px solid #fff;
    position: relative;
    margin-right: 15px;
  }
  .row.row-banner {
    margin-right: -10px !important;
  }
  .d-block.logo.text-center {
    display: none !important;
  }
  .js-categories-bar-item {
    display: none !important;
  }
  .menuTrigger span {
    display: inline-block;
    vertical-align: middle;
  }
  .link-footer {
    background-color: #eceff1;
  }
  .slider .col-12 {
    padding: 0 !important;
  }
  .text-center.more a span {
    font-size: 11px;
  }
  .owl-news .owl-stage {
    padding-right: 0 !important;
  }

  .col-md-5.col-12.p-0.order-md-5 {
    background-color: #ebebeb;
  }
  .reg {
    display: none !important;
  }

  .menu-mob {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menuTrigger i {
    color: #000;
    font-size: 26px;
    vertical-align: middle;
    margin-left: 20px;
  }
  .toolbar-desc li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 24px;
  }
  .container {
    max-width: 100%;
  }
  .toolbar-desc .count {
    position: absolute;
    top: -20px;
    background-color: #ffb4cb;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    color: #fff;
    line-height: 22px;
    right: -6px;
    z-index: 2;
    text-align: center;
  }
  .img-slice {
    background: url("../images/slices.png") no-repeat;
  }
  .img-shop {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
  }
  .img-shop {
    margin-right: 5px;
  }
}
.badge-container {
    position: absolute;
    top: 16px;
    right: 14px;
    display: flex;
    gap: 8px;
}

.badge {
    display: inline-block;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 6px;
    line-height: 1;
    color: #fff;
    text-align: center;
}

.badge-off {
    background: #ed1944;
}

.badge-blue {
    background: #2619ed;
}

.badge-green {
    background: #eda219;
}

.badge-red {
    background: #ed1944;
}
.img-reg, .img-shop {
    display: inline-block;
    vertical-align: middle;
}
.img-reg {
    background-position: -62px -32px;
    width: 17px;
    height: 24px;
}
/**************************** Theme ****************************/
.dropdown.position-static {
    position: static;
}
.dropdown-menu.mega-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    transform: translate(-50%, 10px);
    transition: all 0.3s ease;
    width: 100vw;
    max-width: 1000px;
    left: 50%;
    border: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}
.navbar .dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.mega-menu .col-menu {
    padding: 1rem 2rem;
}
.mega-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-cat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.nav-cat-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-cat-item a {
    margin: 0;
    color: #333;
    font-size: 1.125rem; /* ~18px */
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}
.nav-item a:hover {
    color: var(--bs-pink);
    text-decoration: none;
}

.nav-cat-item:hover a,
.nav-cat-item.active a {
    color: var(--bs-pink);
    text-decoration: none;
}
.nav-cat-item:hover img,
.nav-cat-item.active img {
    filter: brightness(0) saturate(100%) invert(41%) sepia(83%) saturate(613%) hue-rotate(278deg) brightness(95%) contrast(95%);
    transform: scale(1.1);
}

.mega-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mega-content.show {
    display: block;
    opacity: 1;
}

.accordion-button {
    font-weight: 600;
}
/* ========== Search Offcanvas Styles ========== */

.offcanvas-search .offcanvas-header {
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-search .offcanvas-body {
    padding: 1rem;
}
.offcanvas-search .form-control {
    flex: 1;
    border-radius: 0.25rem 0 0 0.25rem;
}

.btn-pink {
    background-color: var(--bs-pink);
    border-color: var(--bs-pink);
    color: #fff;
}
.btn-pink:hover {
    background-color: #c21e7b;
    border-color: #c21e7b;
}

/* ========== Cart Dropdown Styles ========== */

.cart-dropdown {
    min-width: 280px;
    border-radius: 0.5rem;
}

.cart-dropdown .cart-header span {
    font-size: 1rem;
    font-weight: 500;
}

.cart-dropdown .cart-header .text-decoration-none {
    color: var(--bs-pink);
}

.cart-dropdown hr {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

.cart-dropdown .cart-body .fw-bold {
    font-size: 0.95rem;
}

.cart-dropdown .btn-pink {
    width: 100%;
    padding: 0.5rem;
}

.owl-slider {
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
}

.owl-slider .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-slider .item img {
    width: 100%;
    height: auto;
}

/*  ========== history-intro  CSS  ========== */

.section-title {
    position: relative;
    display: inline-block;
    color: var(--bs-pink);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
    .section-title::before,
    .section-title::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 60px;
        height: 2px;
        background: var(--bs-pink);
        transform: translateY(-50%);
    }

    .section-title::before {
        left: -80px;
    }

    .section-title::after {
        right: -80px;
    }
}

#history-intro .intro-text {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/*  ========== Product Categories CSS  ========== */
#prod-cats .category-card {
    overflow: hidden;
    background: #fff;
}
#prod-cats .category-card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
#prod-cats .category-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}
#prod-cats .cat-label,
#prod-cats .cat-label a {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    text-decoration: none;
}

#prod-cats .label-nail {
    background: var(--bs-pink);
}
#prod-cats .label-lips {
    background: #792d29;
}
#prod-cats .label-eyebrows {
    background: #ff7e38;
}
#prod-cats .label-eyes {
    background: #b268b5;
}

@media (min-width: 768px) {
    #prod-cats .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 767.98px) {
    #prod-cats .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*  ========== Product  CSS  ========== */
#products h2 {
    color: #d4258f;
    font-family: "Century Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: 8px;
    text-transform: uppercase;
}
.product-sub-heading {
    color: #999;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 57px;
    letter-spacing: 9.6px;
}

/*  ========== Tabs  ========== */
.product-tabs .nav-link {
    color: #999;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s;
}
.product-tabs .nav-link.active {
    color: #333;
}
.product-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--bs-pink);
}

/*  ========== Tab panes  ========== */
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

/*  ========== Product card  ========== */
.card-product {
    background: #fff;
    border: none;
    overflow: hidden;
    position: relative;
    margin: 0 7.5px;
}
.product-img {
    position: relative;
}
.product-img img {
    width: 100%;
    display: block;
}
.discount {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-pink);
    color: #fff;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0;
}
.product-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}
.card-product:hover .product-overlay {
    opacity: 1;
    transform: translate(-50%, 0);
}
.btn-icon {
    display: inline-block;
    background: var(--bs-pink);
    color: #fff;
    padding: 7px 10px;
}
.add-cart {
    display: inline-block;
    margin-top: 0.5rem;
    border-radius: 0;
    border: 1px solid var(--bs-pink);
    color: var(--bs-pink);
    background: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 7px 12px;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
}

.add-cart:hover {
    display: inline-block;
    margin-top: 0.5rem;
    border-radius: 0;
    border: 1px solid var(--bs-pink);
    color: var(--bs-pink);
    background: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 7px 12px;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
}
.product-body {
    padding: 1rem;
}
.product-title {
    color: #464646;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    text-transform: uppercase;
}
.product-description {
    color: #ababab;
    font-family: Inter;
    font-size: 12.174px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.price {
    color: #3c3c3c;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
    text-transform: uppercase;
}
.price del {
    color: #ccc;
    margin-right: 0.5rem;
}

/*  ========== New Products CSS  ========== */
.bg-pink {
    background-color: var(--bs-pink) !important;
}

.owl-products-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
}

.owl-carousel .owl-nav .owl-prev {
    left: -30px;
}

.owl-carousel .owl-nav .owl-next {
    right: -30px;
}

.owl-products-carousel .owl-dots {
    margin-top: 20px;
}

.owl-products-carousel img {
    border: solid 1px var(--bs-pink);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/*  ========== News CSS  ========== */

#latest-news {
    background-color: #f7f7f7;
}

.news-sub-heading {
    color: #999;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px; /* 285% */
    letter-spacing: 9.6px;
}

#latest-news h2 {
    color: var(--bs-pink);
    font-family: "inter";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.news-item {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: auto;
}

.news-date {
    position: absolute;
    top: 149px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bs-pink);
    color: #fff;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
    padding: 0px 15px;
}
@media (max-width: 767.98px) {
    .news-date {
        position: absolute;
        top: 206px;
    }
}

.news-body {
    padding: 15px 20px;
}

.news-body h5 a {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 87.5% */
}

.news-body p {
    color: #808080;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 155.556% */
}

.owl-news .owl-nav button.owl-prev,
.owl-news .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.owl-news .owl-nav button.owl-prev {
    left: -20px;
}

.owl-news .owl-nav button.owl-next {
    right: -20px;
}

.owl-news .owl-nav button:hover {
    background-color: var(--bs-pink);
    color: #fff;
}

.owl-news .owl-dots {
    margin-top: 20px;
}

.owl-news .owl-dot span {
    background-color: #ddd;
}

.owl-news .owl-dot.active span {
    background-color: var(--bs-pink);
}

/*  ========== testimonials CSS  ========== */
#testimonials .s-title {
    color: #d4258f;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 41px;
}

#testimonials .testimonial-item {
    border-radius: 0;
    transition: 0.3s ease;
    text-align: left;
}

#testimonials .testimonial-item:hover {
    transform: translateY(-5px);
}

#testimonials .testimonial-nav button {
    background: #d4258f;
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s ease;
    opacity: 44%;
}

#testimonials .testimonial-nav button:hover {
    background: var(--bs-pink);
}

#testimonials .stars {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffd700;
}

/*  ========== features CSS  ========== */
#features .feature-box {
    background: #f5f5f5;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

#features .feature-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

#features .icon {
    min-width: 50px;
    max-width: 50px;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
}

/*  ========== footer CSS  ========== */
.footer {
    background-color: #fff;
    color: #8b8b8b;
}

footer p,
footer h6,
footer li,
footer a {
    color: #8b8b8b;
}
.footer a:hover {
    color: #fff;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: var(--bs-pink);
}

.text-pink {
    color: var(--bs-pink);
}

.bg-pink {
    background-color: var(--bs-pink) !important;
}
.social-icons {
    display: flex;
    justify-content: space-around;
}

.footer .social-icons a {
    color: var(--bs-pink);
    margin: 0 6px;
    font-size: 26px;
    transition: all 0.3s;
}

.footer .social-icons a:hover {
    color: #fff;
}

.font-10 {
    font-size: 10px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bs-pink);
    color: white;
    border-radius: 50%;
    padding: 10px 17px;
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--bs-pink);
}

/* =================== ABOUT===================== */

.timeline-line {
    border-left: 2px dotted #bbb;
    left: 0.5rem;
    z-index: 0;
}

.about-intro p {
    font-size: 16px;
    color: #333;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    left: -8px;
    top: 50%;
    border-radius: 50%;
}

.company-goals .timeline-line {
    border-left: 2px dotted #bbb;
    left: 0.5rem;
    z-index: 0;
}

.company-goals ol {
    font-size: 16px;
    color: #333;
}
.company-goals ol li {
    padding-bottom: 18px;
}

@media (min-width: 992px) {
    .timeline-container{
        height: 500px;
    }
}

.about-icon img {
    max-height: 80px;
}

.text-25{
    font-size: 25px;
}

.glass-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-pink {
    color: #d42c88;
}

.instagram-post {

    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}