/*====================
Hero css 
======================*/

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .owl-carousel .owl-nav button.owl-next {
  margin-right: -33px;
}
.hero-slider-wrap {
  background: var(--theme-bg-light);
  border-radius: 10px;
}

.hero-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-single .hero-content {
  position: relative;
  text-align: right;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color2);
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 45px;
  font-weight: 700;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: var(--theme-color2);
}

.hero-single .hero-content p {
  color: var(--color-white);
  line-height: 30px;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 25px;
}

.hero-single .hero-img {
  position: relative;
}

.hero-single .hero-img img {
  width: 75%;
  margin-left: auto;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  float: right;
}

/* hero slider */
.hero-slider {
  position: relative;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slider .owl-dots .owl-dot {
  background: var(--color-white);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active {
  background-color: var(--color-white);
  width: 20px;
}

.hero-slider .owl-nav {
  position: absolute;
  font-size: 25px;
  left: 60px;
  bottom: 26px;
}

.hero-slider .owl-nav button {
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: var(--color-white) !important;
  color: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-slider .owl-nav button:hover {
  background: var(--theme-color) !important;
  color: var(--color-white);
}

.hero-slider .owl-nav .owl-prev {
  margin-right: 12px;
}

/* hs-1 */
.hs-1 .hero-slider {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  position: relative;
}

.hs-1 .hero-slider::before {
  content: "";
  position: absolute;
  left: 80px;
  bottom: 99px;
  width: 440px;
  height: 440px;
  background: var(--theme-color2);
  border-radius: 50% 5% 5% 50%;
  transform: rotate(90deg);
}

.hs-1 .hero-single {
  padding: 25px 50px;
}

.hs-1 .hero-img-item {
  position: absolute;
  top: 120px;
  left: 150px;
  direction: rtl;
}

.hs-1 .hero-img-content {
  position: absolute;
  width: 230px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 10px;
  margin-top: 10px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.hs-1 .hero-img-item:hover .hero-img-content {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.hs-1 .hero-img-content img {
  width: 80px !important;
  height: 80px;
}

.hs-1 .hero-img-info {
  flex: 1;
  text-align: right;
}

.hs-1 .hero-img-info h6 a {
  color: var(--color-dark);
}

.hs-1 .hero-img-info h6 a:hover {
  color: var(--theme-color);
}

.hs-1 .hero-img-info p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.hs-1 .hero-img-info p del {
  margin-right: 8px;
}

.hs-1 .hero-img-info p span {
  color: var(--color-red);
  font-weight: 500;
}

.hs-1 .hero-img-info .theme-btn {
  padding: 3px 12px;
}

.hs-1 .hero-img-item button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--color-white);
  border-radius: 50px;
  text-align: center;
  color: var(--theme-color);
  font-size: 25px;
  border: none;
  animation: hero-pulse 2s infinite;
}

@keyframes hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

@media all and (max-width: 1199px) {
  .hs-1 .hero-single {
    padding: 30px 30px;
  }

  .hs-1 .hero-slider::before {
    width: 340px;
    height: 340px;
  }
}

@media all and (max-width: 991px) {
  .hs-1 .hero-single {
    padding: 50px;
  }

  .hs-1 .hero-single .hero-img img {
    width: 100%;
  }

  .hs-1 .hero-slider::before {
    width: 550px;
    height: 550px;
    top: 80px;
  }
  .hero-single .hero-content p {
    opacity: 0;
  }
  .hero-btn {
    display: flex;
    position: relative;
    gap: 10px;
    float: right;
    top: -55px;
  }
}

@media all and (max-width: 767px) {
  .hs-1 .hero-single {
    padding: 40px 20px 60px 20px;
  }

  .hs-1 .hero-slider::before {
    right: 50px;
    bottom: 0px;
    width: 300px;
    height: 300px;
    top: 76px;
  }

  .hs-1 .hero-img-item {
    top: 60px;
    left: 10px;
  }
}

/* hs-2 */
.hs-2.hero-section {
  margin-top: -6rem;
  background: var(--theme-color2);
}

.hs-2::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 0;
  width: 400px;
  height: 500px;
  border-radius: 0 0 100px 100px;
  background: var(--color-yellow);
  opacity: 0.4;
}

.hs-2 .hero-single {
  padding-top: 140px;
  padding-bottom: 100px;
}

.hs-2 .hero-single .hero-content .hero-sub-title {
  color: var(--theme-color);
}

.hs-2 .hero-single .hero-content .hero-title {
  color: var(--color-dark);
  font-size: 60px;
}

.hs-2 .hero-single .hero-content .hero-title span {
  color: var(--theme-color);
}

.hs-2 .hero-single .hero-content p {
  color: var(--color-dark);
}

.hs-2 .theme-btn {
  background: var(--theme-color);
  color: var(--color-white);
}

.hs-2 .theme-btn2 {
  background: var(--color-red);
}

.hs-2 .hero-text-shape p {
  position: absolute;
  font-size: 200px;
  line-height: 200px;
  font-weight: 800;
  color: var(--color-dark);
  opacity: 0.08;
}

.hs-2 .hero-text-shape .text-1 {
  left: 0;
  top: 50px;
}

.hs-2 .hero-text-shape .text-2 {
  right: 0;
  bottom: 20px;
}

.hs-2 .hero-slider .owl-dots .owl-dot {
  background-color: var(--theme-color);
}

@media all and (max-width: 991px) {
  .hs-2 .hero-single .hero-img img {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .hs-2 .hero-text-shape .text-1 {
    font-size: 100px;
  }

  .hs-2 .hero-single {
    padding-top: 180px;
  }
}

/* hs-3 */
.hs-3 .hero-single {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 1;
}

.hs-3 .hero-single-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hs-3 .hero-slider .owl-nav {
  position: unset;
}

.hs-3 .hero-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hs-3 .hero-slider .owl-nav .owl-prev {
  left: 20px;
}

.hs-3 .hero-slider .owl-nav .owl-next {
  right: 20px;
}

@media all and (max-width: 1199px) {
  .hs-3 .hero-slider .owl-nav {
    display: none;
  }
}
.dirltr .owl-stage-outer {
  direction: ltr;
}
.dk-nikad {
  color: var(--black) !important;
}
.dirrtl {
  direction: rtl;
}
/*====================
Category css 
======================*/

.category-area {
  position: relative;
}

.category-item {
  position: relative;
  direction: rtl;
}

.category-item a {
  width: 100%;
  vertical-align: middle;
}

.category-info {
  text-align: center;
  padding: 25px 15px 15px 15px;
  border: 2px double var(--theme-color-light);
  border-radius: 30px;
  transition: var(--transition2);
}

.category-item:hover .category-info {
  border-color: var(--theme-color);
}

.category-info .icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  background: var(--theme-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.category-info .icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px dashed var(--theme-color);
  border-radius: 50%;
}

.category-info .icon img {
  width: 70px !important;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.category-info:hover .icon img {
  transform: scale(1.1);
}

.category-info .content {
  margin-top: 25px;
}

.category-info .content h4 {
  font-size: 18px;
  color: var(--color-dark);
  transition: all 0.3s ease-in-out;
}

.category-info:hover .content h4 {
  color: var(--theme-color);
}

.category-info .content p {
  color: var(--theme-color);
}

/* category-area2 */
.category-area2 .category-info {
  background: var(--theme-bg-light);
  border: none;
  border-radius: 80px;
}

.category-area2 .category-info .icon {
  border-radius: 40px;
}

.category-area2 .category-info .icon::before {
  display: none;
}

.category-area2 .category-slider {
  margin-top: 10px;
}

@media all and (max-width: 767px) {
  .category-info .icon {
    width: 105px;
    height: 105px;
  }
}
/*====================
Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;

  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 34px;
  color: var(--color-dark);
  margin-top: 4px;
}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.site-heading-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.site-heading-inline .site-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  position: relative;
}

.site-heading-inline .site-title::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  background: var(--theme-color-light);
  border-radius: 50px 0px 0px 50px;
  width: 80%;
  height: 100%;
  z-index: -1;
}

.site-heading-inline .site-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 20%;
  border-bottom: 3px solid var(--theme-color);
  z-index: -1;
}

.site-heading-inline .site-title img {
  width: 32px;
}

.site-heading-inline a {
  font-weight: 500;
  color: var(--theme-color);
}

.site-heading-inline a:hover {
  color: var(--color-red);
}

@media all and (max-width: 767px) {
  .site-heading-inline .site-title {
    font-size: 19px;
  }

  .site-heading-inline .site-title img {
    width: 25px;
  }
}
/*====================
Small banner css 
======================*/

.small-banner {
  position: relative;
}

.small-banner .banner-item {
  position: relative;
  border-radius: 15px;
}

.small-banner .banner-item img {
  height: 100%;
  width: 100%;
  border-radius: 15px;
}

.small-banner .banner-content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 35px;
}

.small-banner .banner-item h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--color-dark);
}

.small-banner .banner-item h3 span {
  color: var(--color-red);
}

.small-banner .banner-item p {
  font-size: 18px;
  color: var(--black);
}

.small-banner .banner-item a {
  display: inline-block;
  background: var(--theme-color);
  font-size: 13px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: uppercase;
  padding: 2px 14px;
  margin-bottom: 15px;
  border-radius: 50px;
}

.small-banner .banner-item a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

@media all and (max-width: 1399px) {
  .small-banner .banner-item h3 {
    font-size: 19px;
  }
}

@media all and (max-width: 1199px) {
  .small-banner .banner-content {
    padding-right: 25px;
  }

  .small-banner .banner-item h3 {
    font-size: 17px;
  }
}
.pb-100 {
  padding-bottom: 100px;
}
.small-banner .banner-item a:hover {
  color: #103749;
}
.product-item .action-links li {
  position: relative;
  border: none;
  background: var(--theme-color) !important;
  color: var(--color-white);
  border-radius: 50% !important;
  text-align: center;
  font-size: 18px;
  width: 50px;
  height: 50px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  font-size: 0 !important;
  margin: 0 1px;
}
.product-item ul {
  list-style: none;
}
.nikadjoon .add_to_cart_button::before {
  content: "\f120";
  font-size: 18px;
  color: #fff;
  font-family: exir-icon;
  line-height: 1.2;
  font-weight: 100;
  right: 6px;
  position: relative;
  top: 5px;
}
.product-slider .nikadjoon {
  background: var(--theme-color);
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.nikadjoon .add_to_cart_button {
  font-size: 0;
}
.product-slider .owl-prev,
.product-slider .owl-next {
  background: var(--theme-color) !important;
  border-radius: 50px;
  color: #fff !important;
}
.product-slider .owl-prev {
  left: 0;
}
.product-slider .pori-quick-woo button,
.product-slider .pori-campare-woo button {
  border: none;
  background: transparent;
}
@media all and (max-width: 991px) {
  .hero-single .hero-img {
    margin-top: 50px;
  }
  .small-banner.pb-100 {
    padding-bottom: 20px;
  }
}
.product-item .action-links li {
  position: relative;
  border: none;
  background: var(--theme-color) !important;
  color: var(--color-white);
  border-radius: 50% !important;
  text-align: center;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  font-size: 0 !important;
  margin: 0 1px;

  /* اضافه کردن این ویژگی‌ها */
  display: flex;
  align-items: center; /* مرکز قرار دادن عمودی */
  justify-content: center; /* مرکز قرار دادن افقی */
}

.action-links .pori-campare-woo .woosc-btn-icon::before,
.action-links li .yith-wcwl-add-to-wishlist a::before,
.action-links .pori-quick-woo button::before {
  position: absolute !important;
  line-height: 1.9 !important;
  left: 28% !important;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px !important;
}
/*====================
Feature css 
======================*/

.feature-area {
  position: relative;
}
.feature-wrap {
  padding: 40px 20px;
  border-radius: 20px;
  background: var(--theme-color);
}
.feature-wrap .feature-item {
  border-left: 1px solid var(--border-white-color);
}
.feature-wrap [class*="col-"]:last-child .feature-item {
  border-right: none;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.feature-icon {
  width: 65px;
  height: 65px;
  line-height: 60px;
  background: var(--theme-bg-light);
  color: var(--black);
  font-size: 30px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  text-align: center;
}
.feature-content h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-white);
}
.feature-content p {
  color: var(--color-white);
}
@media all and (min-width: 1199px) and (max-width: 1399px) {
  .feature-wrap {
    padding: 40px 10px;
  }

  .feature-item {
    gap: 11px;
  }
}
@media all and (max-width: 1199px) {
  .feature-content {
    flex: 1;
  }

  .feature-wrap .feature-item {
    border-right: none;
  }
}
@media all and (max-width: 991px) {
  .feature-item {
    margin: 10px 0;
  }
}
@media all and (max-width: 767px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}
.tab-pane .owl-carousel .owl-stage-outer {
  direction: ltr;
}
.product-area .nav-pills .nav-link {
  color: #103749;
  background-color: var(--theme-bg-light);
  border-radius: 50px;
  margin: 5px 10px;
}
.product-area .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #103749;
  background-color: var(--theme-color2);
  border-radius: 50px;
}
/*====================
Big banner css 
======================*/

.big-banner {
  position: relative;
}

.big-banner .banner-wrap {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.big-banner .banner-content {
  text-align: center;
}

.big-banner .banner-content h6 {
  color: var(--color-dark);
  font-size: 22px;
  text-transform: lowercase;
}

.big-banner .banner-content h2 {
  color: var(--color-dark);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

.big-banner .banner-content p {
  color: var(--color-dark);
  text-transform: lowercase;
  font-size: 20px;
  border-top: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  display: inline-block;
}

.big-banner .banner-content .theme-btn {
  border-radius: 50px;
  margin-top: 30px;
  padding: 8px 28px;
}
ins bdi {
  font-size: 12px;
}

.product-slider-two .nikadjoon {
  background: var(--theme-color);
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
/*====================
 Brand css 
======================*/

.brand-area {
  position: relative;
}

.brand-area .site-title {
  font-size: 22px;
  text-transform: uppercase;
}

.brand-area .site-title span {
  color: var(--color-yellow);
}



/* brand-area2 */
.brand-area2 .brand-item {
  padding: 15px 10px;
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
}
.brand-item img {
  padding: 30px 10px;
  border: 1px solid var(--border-info-color);
  border-radius: 20px;
}
.brand-item img:hover {
  border-color: var(--theme-color);
}
/*====================
About css 
======================*/

.about-left {
  position: relative;
}

.about-shape {
  position: absolute;
  right: -50px;
  top: -80px;
  width: 150px;
  z-index: -1;
}

.about-img {
  position: relative;
}

.about-img .img-1 {
  width: 84%;
}

.about-img .img-2 {
  position: absolute;
  right: 0;
  top: -45px;
  width: 200px;
}

.about-img .img-3 {
  position: absolute;
  right: 0;
  bottom: -45px;
  width: 42%;
}

.about-img img {
  border-radius: 15px;
}

.about-experience {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 20px;
  right: 20px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 10px 20px 10px 10px;
  color: var(--color-dark);
  box-shadow: var(--box-shadow2);
}

.about-experience-icon {
  color: var(--color-white);
  font-size: 45px;
  width: 70px;
  height: 70px;
  line-height: 60px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
}

.about-experience-icon img {
  width: 45px;
  filter: brightness(0) invert(1);
  position: relative;
  top: 5px;
}

.about-right {
  position: relative;
  display: block;
  padding-right: 30px;
}

.about-list {
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.about-list ul li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: var(--color-dark);
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50px;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 60px;
    padding-left: 0px;
  }
  .about-img .img-1 {
    width: 100%;
  }
}
.mb-30 {
  margin-bottom: 30px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-50 {
  padding-top: 50px;
}
/*====================
Deal css 
======================*/

.deal-area {
  position: relative;
  background: var(--theme-color2);
  overflow: hidden;
  z-index: 1;
}

.deal-area::before {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 25%;
  width: 570px;
  height: 570px;
  border-radius: 0% 50% 50% 0%;
  background: var(--color-yellow);
  opacity: 0.5;
  transform: rotate(90deg);
  z-index: -1;
}

.deal-text-shape {
  position: absolute;
  right: 20px;
  top: 16%;
  writing-mode: vertical-lr;
  transform: scale(-1, -1);
  font-size: 100px;
  line-height: 180px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-yellow);
  opacity: 0.3;
  z-index: -1;
}

.deal-content {
  margin-right: 80px;
}

.deal-info span {
  color: var(--color-red);
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.deal-info h1 {
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
}

.deal-info p {
  color: var(--color-dark);
  font-size: 17px;
}

.deal-img {
  position: relative;
}

.deal-discount {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.deal-discount span {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
}

.deal-discount span:last-child {
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

@media all and (max-width: 991px) {
  .deal-img {
    margin-top: 50px;
  }
  .deal-area::before,
  .deal-text-shape {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .deal-content {
    margin-right: 0;
    
  }
  .nikad-gallery.ajab-baba {
    right: 20px;
    position: relative;
  }
}

/* deal-countdown */
.deal-countdown {
  padding: 0 7px;
  margin-top: 25px;
  margin-bottom: 35px;
}

.deal-countdown .row {
  gap: 8px;
}

.deal-countdown .countdown-item {
  margin: 3px;
  padding: 10px 6px;
  border-radius: 20px;
}

.deal-countdown .countdown-item h2 {
  font-size: 50px;
  margin-bottom: 4px;
}

.deal-countdown .countdown-item h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* deal-slider */
.deal-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.deal-slider .owl-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 3px solid var(--theme-color);
  margin: 4px;
  transition: var(--transition2);
}

.deal-slider .owl-dots button.active {
  background: var(--theme-color);
}
.deal-area .deal-discount span:last-child {
  font-size: 25px;
  line-height: 45px;
  font-weight: 600;
  text-transform: uppercase;
}
.deal-area .deal-discount {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 10%;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  left: 20%;
}
.deal-area .sale-label {
  color: #ffffff;
  background: var(--theme-color);
  box-shadow: 0px 2px 10px #52555e24;
  width: 120px;
  height: unset;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  border-radius: 50%;
  padding-top: 10px;
}
/*====================
 Product list css 
======================*/

.product-list {
  position: relative;
}

.product-list-title {
  position: relative;
  font-size: 25px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-info-color);
}

.product-list-title::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.8px;
  width: 40px;
  height: 2px;
  background: var(--theme-color);
}

.product-list-item {
  display: flex;
  gap: 14px;
  background: var(--theme-bg-light);
  align-items: center;
  border-radius: 15px;
  margin: 25px 0;
  padding: 10px;
  position: relative;
  transition: var(--transition);
}

.product-list-item:last-child {
  margin-bottom: 0;
}

.product-list-img {
  background: var(--color-white);
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 10px;
}

.product-list-img img {
  width: 100px;
  height: 100px;
}

.product-list-item:hover .product-list-img img {
  transform: scale(1.1);
}

.product-list-content {
  flex: 1;
}

.product-list-content h4 a {
  font-size: 18px;
}

.product-list-content h4 a:hover {
  color: var(--theme-color);
}

.product-list-rate {
  font-size: 15px;
  color: var(--color-yellow);
  margin-top: 4px;
}

.product-list-price {
  margin-top: 4px;
  font-weight: 500;
}

.product-list-price del {
  margin-right: 10px;
}

.product-list-price span {
  color: var(--color-red);
}

.product-list-btn {
  position: absolute;
  left: -3px;
  bottom: -3px;
  width: 50px;
  height: 50px;
  line-height: 30px;
  border-radius: 50%;
  border: 6px solid var(--color-white);
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
}

.product-list-btn:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

@media all and (max-width: 1399px) {
  .product-list-content h4 a {
    font-size: 16px;
  }
}
.product-list-btn .add_to_cart_button::before {
  right: 0 !important;
}
.py-100 {
  padding-bottom: 50px;
}
/* ========================
57. Gallery css 
=========================== */

.gallery-item {
  position: relative;
  width: 100%;
  text-align: center;
}

.gallery-img {
  position: relative;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}

.gallery-img:hover::before {
  transform: translateY(110%);
}

.gallery-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  opacity: 0.8;
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}

.gallery-img:hover::after {
  transform: none;
}

.gallery-img img {
  width: 100%;
  border-radius: 15px;
}

.gallery-link {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  color: var(--color-yellow);
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-white);
  transition: all 200ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
}

.gallery-item:hover .gallery-link {
  transform: translate(-50%, -50%) scale(1);
  transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.7s;
}

/* gallery-img-item */
.gallery-img-item {
  position: absolute;
  top: 120px;
  left: 150px;
}

.gallery-img-content {
  position: absolute;
  width: 250px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 10px;
  margin-top: 10px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.gallery-img-item:hover .gallery-img-content {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.gallery-img-content img {
  width: 80px;
  height: 80px;
}

.gallery-img-info {
  flex: 1;
}

.gallery-img-info h6 a {
  color: var(--color-dark);
}

.gallery-img-info h6 a:hover {
  color: var(--theme-color);
}

.gallery-img-info p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.gallery-img-info p del {
  margin-right: 8px;
}

.gallery-img-info p span {
  color: var(--color-red);
  font-weight: 500;
}

.gallery-img-info .theme-btn {
  padding: 3px 12px;
}

.gallery-img-item button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color2);
  border-radius: 50px;
  text-align: center;
  color: var(--color-dark);
  font-size: 25px;
  border: none;
  animation: gallery-pulse 2s infinite;
}

@keyframes gallery-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.gallery-btn-active .gallery-img::before,
.gallery-btn-active .gallery-img::after {
  display: none;
}

.gallery-item-1 {
  top: unset;
  left: 50px;
  bottom: 140px;
}

.gallery-item-2 {
  top: unset;
  left: unset;
  right: 120px;
  bottom: 150px;
}

.gallery-item-2 .gallery-img-content {
  left: unset;
  right: 0;
}

@media all and (min-width: 991px) and (max-width: 1199px) {
  .gallery-item-1 {
    bottom: 120px;
  }

  .gallery-item-2 {
    bottom: 130px;
    right: 50px;
  }
}

@media all and (max-width: 767px) {
  .gallery-btn-active .main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .gallery-img-content {
    margin-top: 0;
  }

  .gallery-item-1 {
    left: 20px;
    bottom: 70px;
  }

  .gallery-item-1 .gallery-img-content {
    left: 0px;
    bottom: 40px;
  }

  .gallery-item-2 {
    right: 20px;
    bottom: 130px;
  }

  .gallery-item-2 .gallery-img-content {
    bottom: 40px;
  }
}
.popup-gallery .owl-stage-outer {
  direction: ltr;
}
#elementor-lightbox-slideshow-single-img {
  display: none !important;
}
.pb-100 {
  padding-bottom: 50px;
}

/*====================
Testimonial css 
======================*/

.testimonial-area {
  position: relative;
}

.ts-bg {
  position: relative;
}
.testimonial-item {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  text-align: right;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
  text-align: right;
}

.testimonial-author-img {
  width: 70px;
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 19px;
  color: var(--color-dark);
  text-align: right;
  margin: 0;
}

.testimonial-author-info p {
  color: var(--theme-color);
  font-weight: 500;
  text-align: right;
}

.testimonial-quote-icon {
  position: absolute;
  right: 30px;
  bottom: 20px;
  width: 100px;
  opacity: 0.2;
}

.testimonial-rate {
  color: var(--theme-color);
  margin-top: 15px;
}

.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonial-slider .owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 20px;
}
.pb-60 {
  padding-bottom: 20px;
}
.pb60 {
  padding-bottom: 20px;
}
/*====================
Blog css 
======================*/

.blog-area {
  position: relative;
}

.blog-item {
  background: var(--color-white);
  padding: 20px;
  border: 1px solid var(--border-info-color);
  border-radius: 20px;
  transition: var(--transition);
}

.blog-item-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.blog-item-img img {
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  right: -1px;
  bottom: 30px;
  background: var(--theme-color);
  color: var(--color-white);
  font-weight: 500;
  border-radius: 50px 0 0 50px;
  padding: 4px 12px 4px 15px;
}

.blog-item-meta {
  padding: 14px 0;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-info-color);
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color: var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info .theme-btn {
  margin-top: 10px;
}

.blog-item-info h4 a {
  color: var(--color-dark);
}

.blog-item-info h4 a:hover {
  color: var(--theme-color);
}
.blog-area .blog-item-meta ul li i:first-child {
  margin-right: 5px;
  color: var(--theme-color);
  font-size: 0;
}
.blog-item-meta .img-fluid {
  border-radius: 50%;
}
.blog-item-meta ul {
  padding: 0;
}
/*====================
Counter css 
======================*/

.counter-area {
  position: relative;
  background: var(--theme-color);
  z-index: 1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 83px;
  color: var(--color-white);
  border: 3px solid var(--color-white);
  background:  var(--color-dark);
  z-index: 1;
}

.counter-box .icon img{
  filter:brightness(0) invert(1);
  width: 55px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .counter-amount{
  display: flex;
  color: var(--color-white);
}

.counter-box .counter-amount .counter-sign{
  margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}



/*===================
Team css 
=====================*/

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  padding: 15px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img{
  border-radius: 15px;
  margin-top: 0px;
}

.team-content {
  padding: 10px 0 5px 0;
}
.team-bio h5{
  margin: 0;
}
.team-bio h5 a{
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio span {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color);
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color:  var(--theme-color);
}

.team-social {
  border-top: 1px solid var(--border-info-color);
  margin-top: 10px;
  padding-top: 10px;
}

.team-social a {
  display: inline-block;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 4px;
  border-radius: 50px;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
}

.team-social a:hover {
  background: var(--theme-color2);
  color: var(--color-dark);
}



/*===================
Play btn
=====================*/

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-dark) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color2);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}



/*====================
Video css 
======================*/

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .01);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 15px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 500px;
  z-index: 1;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.mb-80{
  margin-bottom: 40px;
}
.pk{
  padding: 50px 0;
}
.pks {
  margin: 30px auto;
}
/*===================
Contact us css 
=====================*/

.contact-area {
  position: relative;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 25px 15px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  background:var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info:hover{
  transform: translateY(-8px)
}

.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.contact-info p{
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
}

.contact-form{
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px 30px 10px 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
}


@media all and (max-width: 991px) {
  .contact-info{
    padding: 35px;
  }
}

@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
.wpcf7-form.init {
  padding: 25px 15px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.submit, .woocommerce #respond input#submit, input[type="submit"] {
  color: #fff;
  position: relative;
  font-size: 16px;
  background: var(--theme-color2);
  color: var(--color-dark);
  padding: 10px 20px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: medium;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  text-decoration: none;
}
.wpcf7-submit {
  position: relative;
  font-size: 16px;
  background: var(--theme-color2);
  color: var(--color-dark);
  padding: 10px 20px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: medium;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  text-decoration: none;
}

/*====================
Coming soon css 
======================*/

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon-content .title{
  margin-bottom: 8px;
}

.coming-soon-content .lead{
  font-weight: 500;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 15px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 150px;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 12px;
  background: var(--theme-color);
  display: inline-block;
  color: var(--color-white);
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: var(--color-white);
  margin: 5px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--color-white);
  display: inline-block;
  transition: .5s;
  font-size: 34px;
}

.coming-social a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.coming-soon-countdown {
  margin-top: 30px;
}

@media all and (max-width: 1399px) {
  .coming-soon-content{
    margin-top: 0;
  }
}
.coming-soon-content.text-white.text-center.mt-50 {
  margin: 80px 0;
}
.countdown .countdown-item {
  background: var(--theme-color2);
  margin: 0 10px;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
}
.dirltr {
  direction: ltr;
}
.pk {
  margin: 80px auto;
}
@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
  .pk{
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 767px) and (max-width:1024px){
  .pk{
    padding: 0;
    margin: 0;
  }
}
/* story css*/
/* ظاهر استوری‌ها */
.story-wrapper {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 20px;
}

.story-item {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #d92d77;
	cursor: pointer;
	position: relative;
	text-align: center;
}

.story-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-title {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #333;
  margin-top: 20px;
}

/* مدال استوری */
.story-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(27, 26, 26);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	display: none;
}

.story-modal.show {
	display: flex;
}

.story-content {
  position: relative;
  width: 50%;
  max-width: 350px;
  text-align: center;
}

.story-content img {
	width: 100%; 
	border-radius: 10px;
	transition: opacity 0.5s ease-in-out; 
	opacity: 0;
}

.view-story-btn {
  bottom: 30px;
  position: absolute;
  text-align: center;
  right: 38%;
  width: auto;
  background-color: var(--theme-color);
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  color: #fff;
}
.story-content img.show {
	opacity: 1; 
}

.progress-bar {
	position: absolute;
	top: 10px;
	left: 0;
	width: 50%; 
	height: 5px; 
	background-color: var(--theme-color) !important; 
	animation: progress 15s linear; 
  border-radius: 8px;
}

@keyframes progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}


/* دکمه بستن */
.close-modal {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #fff;
	color: #333;
	border: none;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 5px;
}
.story-nikad {
  position: relative;
  height: 134px;
}
.story-wrapper.owl-carousel.owl-loaded.owl-drag {
  direction: ltr;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;

}
.story-wrapper .owl-item {
  direction: rtl;
}
@media (max-width:767px){
  .story-content {
    position: relative;
    width: 100%; 
  }
}
.nikislider.owl-carousel.owl-theme.owl-loaded.owl-drag {
  direction: ltr;
}
.niki-slider {
  position: relative;
}
.niki-slider .owl-dots {
  position: absolute;
  top: 10px;
  left: 10px;
  margin: 0 5px;
  border-radius: 50%;
}
.niki-slider .owl-dot {
  margin: 0 5px;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #fff !important;
}
.niki-slider .owl-dot.active {
  width: 19px;
  height: 5px;
  background: #fff !important;
  border-radius: 4px;
  transition: var(--transition);
}
.niki-cate-sar::after {
  content: "";
  position: absolute;
  height: 1px;
  right: 0;
  left: 0;
  bottom: 16px;
  background-color: #e2e4eb;
}
.niki-cate-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fafafa;
  z-index: 1;
  position: relative;
  padding-left: 18px;
}
.niki-cate-txt span {
  color: #021959;
  font-size: 20px;
  font-weight: 700;
}
.niki-cate-txt span {
  font-size: 22px;
}
.niki-cate-niki {
  overflow: hidden;
}
.niki-cate-niki figure {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .36s;
  -o-transition: .36s;
  transition: .36s;
}
.niki-cate.owl-carousel.owl-theme.wow.owl-loaded.owl-drag {
  direction: ltr;
  text-align: center;

}
.niki-cate-niki .icon {
  border-radius: 8px;
}
.niki-cate-sar {
  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;
  position: relative;
  margin-bottom: 20px;
}
.niki-cate-txt i {
  color: var(--theme-color);
  margin-left: 10px;
  opacity: 0.5;
}
.nikad-mahsol-owl {
  -webkit-box-shadow: 0 3px 2px rgba(2,25,89,0.02) !important;
  box-shadow: 0 3px 8px rgba(2,25,89,0.07) !important;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 50px 25px 25px 25px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  direction: rtl;
  position: relative;
  margin: 10px 0;
}
.nikad-mahsol-top {
  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;
  margin-bottom: 18px;
}
.post .nikad-mahsol-top {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  z-index: 50;
}
.post figure {
  margin-bottom: 51px;
}
.product-titles a {
  font-size: 17px;
  margin: 0;
  line-height: 0;
}
.owl-carousel.owl-theme.five-product.pb60.owl-loaded.owl-drag {
  direction: ltr;
}
.five-product .nikad-mahsol-owl {
  direction: rtl;
}
.post footer {
  margin-top: 28px;
  direction: rtl;
}
.post 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;
}
.nikad-mahsol-ac--amazing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nikad-mahsol-ac {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 34%;

}
.nikad-mahsol-qey .price bdi {
  color: black;
}
.nikad-mahsol-add-to .add_to_cart_button {
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--theme-color);
  font-size: 14px;
}
.nikad-mahsol-add-to a:hover {
  padding: 10px;
  border-radius: 8px;
  color: var(--black);
  background: var(--theme-color2);
}
.nikad-mahsol-qey .price del bdi {
  color: #ff4757 !important;
  font-size: 14px;
}
.nikad-mahsol-top span {
  font-size: 0;
}
.nikad-mahsol-top .yith-wcwl-add-button svg {
  display: block !important;
  color: var(--theme-color);
} 
.nikad-mahsol-top .yith-wcwl-wishlistaddedbrowse .feedback {
  display: block;
}
.nikad-mahsol-top .yith-wcwl-wishlistaddedbrowse .feedback svg{
  color: red;
}
.nikad-mahsol-top .pori-quick-woo button {
  font-size: 0;
}
.nikad-mahsol-top .pori-quick-woo {
  list-style: none;
}
.nikad-mahsol-top .pori-quick-woo button::before {
content: "\ecb5";
  font-family: "exir-icon";
  font-size: 25px;
  color: var(--theme-color);
  top: -5px;
  position: absolute;
  left: 5px;
}
.product-titles a {
  font-size: 18px !important;
}
.card-badge {
  position: absolute;
  top: -8px;
  left: 30%;
  background-color: #ff4757;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.card-badge picture img {
  margin-left: 5px;
}
.card-badge picture {
  width: 20px;
}
.card-badge {
  font-size: 17px !important;
}
.bishtar-more {
  background: #fafafa;
  z-index: 999;
}
.pt50{
  padding-top: 50px;
}
.col-9.owl-carousel.owl-theme.six-product.pb60.owl-loaded.owl-drag {
  direction: ltr;
}
.pori-nikad-six {
  display: flex;
}
.baby-collection__baner.col-3 img {
  top: 15px;
  position: relative;
  left: 10px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 1px var(--theme-color);
}
@media (max-width:1440px){
  .baby-collection__baner.col-3{
    display: none;
  } 
  .col-9.owl-carousel.owl-theme.six-product.pb60.owl-loaded.owl-drag {
    width: 100% !important;
  }
}