.text2 {
  max-width: 98.5%;
  margin: 40px auto;
  border-radius: 20px;
  background-color: #ECECEC;
  font-size: 26px;
  text-align: justify;
  padding: 30px 40px 60px;
  line-height: 2;
  position: relative;
  font-family: 'dana-small', sans-serif;
}

.tex2 {
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  box-orient: vertical;
  position: relative;
  opacity: 60%;
}

.pop-mobile{
  display: none;
}
.specs-popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: none;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 9999;
}

.specs-popup {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  max-width: 73%;
  width: 73%;
  max-height: 87%;
  -webkit-animation: fadeInUp 0.3s ease;
  -moz-animation: fadeInUp 0.3s ease;
  -o-animation: fadeInUp 0.3s ease;
  animation: fadeInUp 0.3s ease;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  -ms-scroll-behavior: smooth;
  scroll-behavior: smooth;
}

.specs-columns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  column-gap: 3%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.specs-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 47%;
}

.specs-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 37px;
  border-radius: 10px;
  font-size: 14px;
  background: var(--primary);
}

.label {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-color: #EEEEEE;
  background-color: #EEEEEE;
  color: #6c3f98;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: bold;
  -webkit-transform: translateX(1px);
  -moz-transform: translateX(1px);
  -ms-transform: translateX(1px);
  -o-transform: translateX(1px);
  transform: translateX(1px);
}

.value {
  background: transparent;
  color: #fff;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.specs-note {
  margin-top: 20px;
  background: #f6f0ff;
  border-radius: 10px;
  color: #6c3f98;
  font-size: 13px;
  text-align: center;
  width: 97%;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.product-detail {
  width: 98%;
  margin: 40px auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ECECEC;
  border-radius: 20px;
  padding: 20px;
  gap: 30px;
  font-family: 'dana', sans-serif;
  direction: rtl;
  margin-bottom: 0px;
}

.product-images {
  -webkit-box-flex: 1.5;
  -moz-box-flex: 1.5;
  -ms-flex: 1.5;
  -webkit-flex: 1.5;
  flex: 1.5;
  text-align: center;
  width: 750px;
  height: 660px;
  background-color: #FFFFFF;
  border-radius: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
}
.pro-img{
  width: 90%;
  background: var(--primary);  
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 20px;
}
.pro-img-bg {
  background-color: #ffffff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.product-images img{
  width: 100%;
  height: 455px;
  -o-object-fit: contain;
  object-fit: contain;
  background: #ffffff;
}

.main-image {       
  width: 100%;
  height: 455px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: #ffffff;
}

.thumbs {
  margin: 20px;
  width: 90%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  gap: 14px;
  overflow-x: auto;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-radius: 0 0 12px 12px;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  -ms-scroll-behavior: smooth;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #fff #6C3F98;
}
.info-mobile{
  display: none;
}

.thumbs img {
  max-width: 140px;
  min-width: 140px;
  width: 140px;
  height: 110px;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
}
.thumbs img:not(.active-thumb) {
  -webkit-filter: blur(1px) brightness(0.9);
  -moz-filter: blur(1px) brightness(0.9);
  -o-filter: blur(1px) brightness(0.9);
  filter: blur(1px) brightness(0.9);
  opacity: 0.7;
}

.thumbs img.active-thumb {
  border-color: #4a90e2;
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  filter: none;
  opacity: 1;
}

.thumbs img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  filter: none;
  opacity: 1;
}
.product-info {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  -webkit-flex: 2;
  flex: 2;
  min-width: 200px;
}

.title {
  font-size: 35px;
  color: #6C3F98;
  margin-bottom: 5px;
  font-weight: bold;
}

.model {
  font-size: 21px;
  color: #666;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  color: #8e44ad;
  font-weight: bold;
  opacity: 100%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  opacity: 100%;
}
.price-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  margin-bottom: 20px;
  width: 200px;
  height: 50px;
  background-color: #E1BEE7;
  border-radius: 20px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.feature-rating-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 35px;
  font-weight: bold;
  color: #333;
}

.rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 25px;
  color: gold;
  border-radius: 10px;
  gap: 6px;
  width: 378px;
  height: 64px;
  background-color: #FFFFFF;
  text-align: center;
}

.rate-label {
  color: #333;
  font-size: 25px;
  margin-left: 8px;
  margin-right: 5px;
}
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #000000;
  opacity: 70%;
  line-height: 1.8;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features p{
  font-size: 20px;
  text-align: start;
}

.buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 60px;
}

.add-to-cart-btn {
  background-color: #e74c3c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  min-width: 189px;
  font-family: 'dana';
}

.comment-submit, .specs-btn {
  background-color: #6C3F98;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  min-width: 189px;
  font-family: 'dana';
}
.specs-btn h3{
  font-size: 18px;
  font-weight: normal;
}
.stars{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 100%;
}
.star img{
  width: 40px;
  height: 40px;
}
.star:not(.active){
  display: none;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.star{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.related-products-section {
  width: 98%;
  margin: 0px auto;
  margin-bottom: 20px;
  background-color: #ECECEC;
  padding: 20px;
  border-radius: 16px;
}

.related-products-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #6C3F98;
}

.view-all {
  font-size: 20px;
  color: #6C3F98;
  text-decoration: none;
  font-weight: 500;
}

.related-products-slider {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  -ms-scroll-behavior: smooth;
  scroll-behavior: smooth;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 40px;
  overflow-x:auto ;

}


.related-products-slider::-webkit-scrollbar {
  height: 6px;
}

.related-products-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.product-card {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 291px;
  height: 264px;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  background: #ffffff;
}
.comment-popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: none;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 999;
}

.comment-popup {
  background: white;
  width: 1000px;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.purple-box {
  background-color: #6C3F98;
  border-radius: 16px;
  padding: 16px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.comment-list {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-left: 4px;
}

.comment-box {
  background: #fff;
  color: #333;
  opacity: 95%;
  padding: 5px 12px 12px 12px;
  border-radius: 12px 12px 12px 0;
  margin-bottom: 12px;
  height: 130px;
}
.comment-box span{
  color: #6C3F98;
  font-weight: bold;
  font-size: 18px;
}
.comment-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.comment-form textarea {
  width: 100%;
  height: 125px;
  resize: none;
  min-height: 100px;
  padding: 10px;
  border: none;
  border-radius: 8px 8px 8px 0;
  font-family: inherit;
  box-sizing: border-box;
  background-color: #EEEEEE;
  margin-top: 30px;
}

.comment-form .submit-comment {
  align-self: flex-end;
  background-color: #6C3F98;
  color:#fff ;
  padding: 8px 20px;
  border: none;
  border-radius:0 8px 8px 8px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  font-family: 'dana';
}

/* اسکرول‌بار برای همه مرورگرها */
.comment-list {
  scrollbar-width: thin;
  scrollbar-color: #fff #6C3F98;
}

.comment-list::-webkit-scrollbar {
  width: 6px;
}

.comment-list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.comment-list::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
}
@-webkit-keyframes coolBreezeIn {
  0% {
    opacity: 100%;
    -webkit-transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    -webkit-filter: blur(1px);
    filter: blur(1px);
  }
  60% {
    opacity: 100%;
    -webkit-transform: translateY(10px) scale(1.03) rotateX(3deg);
    transform: translateY(10px) scale(1.03) rotateX(3deg);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotateX(0);
    transform: translateY(0) scale(1) rotateX(0);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-moz-keyframes coolBreezeIn {
  0% {
    opacity: 100%;
    -moz-transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    -moz-filter: blur(1px);
    filter: blur(1px);
  }
  60% {
    opacity: 100%;
    -moz-transform: translateY(10px) scale(1.03) rotateX(3deg);
    transform: translateY(10px) scale(1.03) rotateX(3deg);
    -moz-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0) scale(1) rotateX(0);
    transform: translateY(0) scale(1) rotateX(0);
    -moz-filter: blur(0);
    filter: blur(0);
  }
}
@-o-keyframes coolBreezeIn {
  0% {
    opacity: 100%;
    -o-transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    -o-filter: blur(1px);
    filter: blur(1px);
  }
  60% {
    opacity: 100%;
    -o-transform: translateY(10px) scale(1.03) rotateX(3deg);
    transform: translateY(10px) scale(1.03) rotateX(3deg);
    -o-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0) scale(1) rotateX(0);
    transform: translateY(0) scale(1) rotateX(0);
    -o-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes coolBreezeIn {
  0% {
    opacity: 100%;
    -webkit-transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    -moz-transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    -o-transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    transform: translateY(-80px) scale(0.9) rotateX(-15deg);
    -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    filter: blur(1px);
  }
  60% {
    opacity: 100%;
    -webkit-transform: translateY(10px) scale(1.03) rotateX(3deg);
    -moz-transform: translateY(10px) scale(1.03) rotateX(3deg);
    -o-transform: translateY(10px) scale(1.03) rotateX(3deg);
    transform: translateY(10px) scale(1.03) rotateX(3deg);
    -webkit-filter: blur(0.5px);
    -moz-filter: blur(0.5px);
    -o-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotateX(0);
    -moz-transform: translateY(0) scale(1) rotateX(0);
    -o-transform: translateY(0) scale(1) rotateX(0);
    transform: translateY(0) scale(1) rotateX(0);
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -o-filter: blur(0);
    filter: blur(0);
  }
}
.comment-popup {
  opacity: 0;
  -webkit-transform: translateY(-50px) scale(0.95);
  -moz-transform: translateY(-50px) scale(0.95);
  -o-transform: translateY(-50px) scale(0.95);
  transform: translateY(-50px) scale(0.95);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.comment-popup.animate-in {
  -webkit-animation: coolBreezeIn 0.6s cubic-bezier(0.33, 1.3, 0.6, 1) forwards;
  -moz-animation: coolBreezeIn 0.6s cubic-bezier(0.33, 1.3, 0.6, 1) forwards;
  -o-animation: coolBreezeIn 0.6s cubic-bezier(0.33, 1.3, 0.6, 1) forwards;
  animation: coolBreezeIn 0.6s cubic-bezier(0.33, 1.3, 0.6, 1) forwards;
}
.product-card {
  position: relative;
  width: 291px;
  height: 264px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.link-a{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.product-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.4s ease;
  -moz-transition: -moz-filter 0.4s ease;
  -o-transition: -o-filter 0.4s ease;
  transition: filter 0.4s ease;
}

.product-card:hover .product-card img::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(4px);
  -moz-backdrop-filter: blur(4px);
  -ms-backdrop-filter: blur(4px);
  -o-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1;
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
}



/* مشخصات محصول کشویی */
.product-info-overlay {
  color: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: transparent;
  gap: 20px;
  overflow: hidden;
  text-align: center;
  padding: 0 12px;
  -webkit-transition: height 0.4s ease, padding 0.3s ease;
  -moz-transition: height 0.4s ease, padding 0.3s ease;
  -ms-transition: height 0.4s ease, padding 0.3s ease;
  -o-transition: height 0.4s ease, padding 0.3s ease;
  transition: height 0.4s ease, padding 0.3s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-backdrop-filter: blur(8px);
  -moz-backdrop-filter: blur(8px);
  -ms-backdrop-filter: blur(8px);
  -o-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
}

.product-info-overlay h4,
.product-info-overlay h5,
.product-info-overlay span {
  font-size: 20px;
  overflow: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: box;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  box-orient: vertical;
  max-width: 100%;
  direction: rtl;
  line-height: 1.5em;
  margin: 5px 0;
  padding: 0 5px;
}

/* نمایش مشخصات روی هاور */
.product-card:hover .product-info-overlay {
  height: 100%;
  padding-top: 10px;
}

.cart-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(4px);
  -moz-backdrop-filter: blur(4px);
  -ms-backdrop-filter: blur(4px);
  -o-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cart-popup-overlay.active {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.cart-popup {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  max-height: 90vh;
  -webkit-animation: fadeInUp 0.4s ease;
  -moz-animation: fadeInUp 0.4s ease;
  -ms-animation: fadeInUp 0.4s ease;
  -o-animation: fadeInUp 0.4s ease;
  animation: fadeInUp 0.4s ease;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cart-popup-header {
  background: #6C3F98;
  color: white;
  padding: 15px;
  font-weight: bold;
  font-size: 17px;
  position: relative;
  text-align: center;
}

.cart-close-btn {
  position: absolute;
  right: 15px;
  top: 12px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.cart-close-btn-mob {
  display: none;
}

.cart-popup-body {
  padding: 20px;
  text-align: center;
}

.cart-popup-body img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
  margin-bottom: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
}

.cart-popup-body h3 {
  margin: 0;
  font-size: 18px;
  color: #6C3F98;
}

.cart-popup-body h4 {
  margin: 8px 0 20px;
  font-size: 14px;
  color: #555;
  font-weight: normal;
}

.empty-star {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.half-star {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.full-star {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.go-to-cart-btn {
  position: relative;
  background: #6C3F98;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  font-family: 'dana';
}

.all-stars {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* انیمیشن */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInUp {
  from {
    opacity: 0;
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.plus {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border-radius: 100px;
}

.plus1,
.plus1-mob {
  background-color: #E73F55;
  width: 100px;
  height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 0 100px 100px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 28px;
}

.plus1:hover,
.plus2:hover,
.plus1-mob:hover,
.plus2-mob:hover {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #be273c;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.plus2,
.plus2-mob {
  background-color: #E73F55;
  width: 100px;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 100px 0 0 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 28px;
}

.num,
.num-mob {
  width: 65px;
  height: 40px;
  background-color: #FFCDD2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  color: #000800;
}

.w-line {
  width: 2px;
  background: var(--white);
  height: 100%;
  margin-left: 3px;
}

.main-swiper-mob {
  width: 100%;
  display: none;
}

.swiper-wrapper {
  width: 1px;
}

/* Banner and images */
.under-slider {
  margin: var(--space-6) auto;
}

.under-slider img,
.brand-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.brands {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 26px auto 40px;
  gap: 24px;
}

.brand-box {
  cursor: pointer;
  -ms-flex-preferred-size: 135px;
  flex-basis: 135px;
  height: 132px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-box:hover {
  -webkit-transform: translateY(-5px) scale(1.05);
  -moz-transform: translateY(-5px) scale(1.05);
  -ms-transform: translateY(-5px) scale(1.05);
  -o-transform: translateY(-5px) scale(1.05);
  transform: translateY(-5px) scale(1.05);
  z-index: 2;
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}

.brand-box img {
  max-width: 100%;
}

/* Products */
.bgr-product {
  background: var(--primary);
  padding: 20px 20px 20px 0;
  margin-bottom: 40px;
}

.product-box {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-4);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.product-box img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--gray-300);
  margin-bottom: var(--space-2);
  -webkit-box-shadow: 1px 1px 1px var(--gray-300);
  -moz-box-shadow: 1px 1px 1px var(--gray-300);
  -ms-box-shadow: 1px 1px 1px var(--gray-300);
  -o-box-shadow: 1px 1px 1px var(--gray-300);
  box-shadow: 1px 1px 1px var(--gray-300);
}

.product-box h3 {
  font-size: 18px;
  text-align: center;
  height: 54px;
  margin-bottom: var(--space-3);
}

.product-box-off {
  font-size: 14px;
  position: relative;
  display: inline-block;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: var(--space-3);
  padding: 0 32px;
}

.product-box-off::before {
  width: 60%;
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  right: 50px;
  height: 1px;
  background-color: rgb(224, 63, 63);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product-box small {
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: var(--space-3);
}

.product-box-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 207px;
  height: 100px;
  background-color: var(--darken-primary);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  font-size: 22px;
}

.parent-p {
  margin-bottom: var(--space-6);
}

.boi img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.features {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 40px;
  margin-bottom: 17px;
}

.features-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.features-box-img {
  width: 140px;
  height: 140px;
  background-color: #ececec;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: var(--space-3);
}

.features-box .features {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  margin-top: var(--space-3);
}

.view-mobile {
  display: none;
}

.card-mob {
  display: none;
}

.specs-close-btn {
  display: none;
}
.text2 {
  display: none;
}

.tech {
  display: none;
}

.head-mob {
  display: none;
}

.com {
  display: none;
}

.blog-box {
  position: relative;
  width: 98%;
  height: 76px;
  background: #6C3F98;
  color: white;
  overflow: hidden;
  line-height: 60px;
  border-radius: 20px;
  margin: 16px auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  display: none;
}

.blog-box #icon {
  width: 44px;
  height: 44px;
  margin: 16px;
}

.blog-box #icon2 {
  margin: 0 10px;
}

.blog-marquee {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.blog-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(108, 63, 152, 0)), color-stop(80%, #6C3F98));
  background: -webkit-linear-gradient(left, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: -moz-linear-gradient(left, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: -ms-linear-gradient(left, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: -o-linear-gradient(left, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: linear-gradient(to right, rgba(108, 63, 152, 0), #6C3F98 80%);
  pointer-events: none;
  z-index: 2;
}

.blog-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(108, 63, 152, 0)), color-stop(80%, #6C3F98));
  background: -webkit-linear-gradient(right, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: -moz-linear-gradient(right, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: -ms-linear-gradient(right, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: -o-linear-gradient(right, rgba(108, 63, 152, 0), #6C3F98 80%);
  background: linear-gradient(to left, rgba(108, 63, 152, 0), #6C3F98 80%);
  pointer-events: none;
  z-index: 2;
}

/* متن متحرک */
.marquee-content {
  display: inline-block;
  -webkit-animation: scrollLoop 20s linear infinite;
  -moz-animation: scrollLoop 20s linear infinite;
  -ms-animation: scrollLoop 20s linear infinite;
  -o-animation: scrollLoop 20s linear infinite;
  animation: scrollLoop 20s linear infinite;
}

.marquee-content p {
  display: inline;
  padding-right: 20px;
  word-spacing: 15px;
}

@-webkit-keyframes scrollLoop {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(80%);
    transform: translateX(80%);
  }
}

@-moz-keyframes scrollLoop {
  from {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -moz-transform: translateX(80%);
    transform: translateX(80%);
  }
}

@-ms-keyframes scrollLoop {
  from {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -ms-transform: translateX(80%);
    transform: translateX(80%);
  }
}

@-o-keyframes scrollLoop {
  from {
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -o-transform: translateX(80%);
    transform: translateX(80%);
  }
}

@keyframes scrollLoop {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(80%);
    -moz-transform: translateX(80%);
    -ms-transform: translateX(80%);
    -o-transform: translateX(80%);
    transform: translateX(80%);
  }
}

.marquee-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.specs-note .specs-item {
  height: auto;
}

.specs-note .specs-item .label {
  width: 24%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.specs-note .specs-item .value {
  padding: 10px;
}

.phone-call {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 2;
  padding: 9px;
  -webkit-animation: pulse 2s infinite;
  -moz-animation: pulse 2s infinite;
  -ms-animation: pulse 2s infinite;
  -o-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.phone-call .phone-call-pic {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}

.phone-call::before {
  content: '';
  position: absolute;
  border: 3px solid var(--primary);
  background: transparent;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 9px;
  opacity: 0;
  -webkit-animation: pulse-border 2s infinite;
  -moz-animation: pulse-border 2s infinite;
  -ms-animation: pulse-border 2s infinite;
  -o-animation: pulse-border 2s infinite;
  animation: pulse-border 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes pulse {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-moz-keyframes pulse-border {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pulse-border {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pulse-border {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

.news-ticker-container {
  
  position: relative;
  width: 98%;
  height: 76px;
  background: #6C3F98;
  color: var(--white);
  overflow: hidden;
  line-height: 60px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  margin: 16px auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.news-ticker-container #icon {
  width: 44px;
  height: 44px;
  margin: 16px;
}
.news-ticker {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  padding-right: 90%;
  -webkit-animation: ticker var(--ticker-duration, 57s) linear infinite;
  -moz-animation: ticker var(--ticker-duration, 57s) linear infinite;
  -ms-animation: ticker var(--ticker-duration, 57s) linear infinite;
  -o-animation: ticker var(--ticker-duration, 57s) linear infinite;
  animation: ticker var(--ticker-duration, 57s) linear infinite;
}
.news-ticker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(108,63,152,0), #6C3F98 80%);
  background: -moz-linear-gradient(left, rgba(108,63,152,0), #6C3F98 80%);
  background: -ms-linear-gradient(left, rgba(108,63,152,0), #6C3F98 80%);
  background: -o-linear-gradient(left, rgba(108,63,152,0), #6C3F98 80%);
  background: linear-gradient(to left, rgba(108,63,152,0), #6C3F98 80%);
  pointer-events: none;
  z-index: 2;
}

.news-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: -webkit-linear-gradient(right, rgba(108,63,152,0), #6C3F98 80%);
  background: -moz-linear-gradient(right, rgba(108,63,152,0), #6C3F98 80%);
  background: -ms-linear-gradient(right, rgba(108,63,152,0), #6C3F98 80%);
  background: -o-linear-gradient(right, rgba(108,63,152,0), #6C3F98 80%);
  background: linear-gradient(to right, rgba(108,63,152,0), #6C3F98 80%);
  pointer-events: none;
  z-index: 2;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-moz-keyframes ticker {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-ms-keyframes ticker {
  0% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-o-keyframes ticker {
  0% {
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.matn{
  font-size: 18px;
}
.pro-img-bg .logo-konj{
  position: absolute;
  right:  15px;
  bottom: 15px;
width: 40px;
height: auto;
z-index: 2;
}
/* Responsive */
@media (max-width: 1200px) {
  .cart-popup-body img {
    max-height: 194px;
  }
  .product-images{
    width: 40%;
  }
}

@media (max-width: 1120px) {
  .add-to-cart-btn,
  .specs-btn,
  .comment-submit {
    font-size: 16px;
    min-width: 169px;
  }
  .specs-btn h3{
    font-size: 16px;

  }
  
  .title {
    font-size: 35px;
  }
  
  .model {
    font-size: 21px;
  }
  
  .price {
    font-size: 21px;
  }
  
  .feature-title {
    font-size: 35px;
  }
  
  .rate-label {
    font-size: 22px;
  }
  
  .features p {
    font-size: 18px;
  }
  
  .product-images img {
    -o-object-fit: contain;
    object-fit: contain;
  background: #ffffff;

  }
  .thumbs img{
    max-width: 140px;
    min-width: 140px;
  }
  
  .stars img {
    width: 35px;
    height: 35px;
  }
  
  .rating {
    height: 54px;
  }
  .product-images{
    width: 40%;
  }
}

@media (max-width: 768px) {
  .search{
    display: none;
  }
  #pop{
    display: none;
  }
  .card-mob {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .card-mob-tit,
  .card-mob-mod,
  .card-mob-pri {
    color: var(--white);
    font-size: 15px;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    max-width: 100%;
    direction: rtl;
    line-height: 1.5em;
    margin: 5px 0;
    padding: 0 7px;
  }
  
  .card-mob-mod {
    opacity: 50%;
  }
  
  .product-card img {
    width: 100%;
    height: 60%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
  }
  
  .product-card {
    background: var(--primary);
  }
  
  .product-info-overlay {
    display: none;
  }
  
  .features {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .features-box {
    margin-bottom: 0;
  }
  
  .features-box-img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 13px;
  }
  
  .features-box .features {
    font-size: 13px;
  }
  
  .under-slider {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .pro-img-bg .logo-konj{
  position: absolute;
  right:  10px;
  bottom: 10px;
width: 40px;
height: auto;
z-index: 2;
}
  .news-ticker-container {
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
    padding-left: 0px;
  }
  .news-ticker::after, .news-ticker::before{
    width: 20px;
  }
  .news-ticker::after{
    background: none;
  }
  .news-ticker-container #icon {
    width: 30px;
    height: 30px;
  }
  .news-ticker-container {
    width: 94%;
    height: 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  .marquee-content {
    -webkit-animation: scrollLoop 5s linear infinite;
    -moz-animation: scrollLoop 5s linear infinite;
    -ms-animation: scrollLoop 5s linear infinite;
    -o-animation: scrollLoop 5s linear infinite;
    animation: scrollLoop 5s linear infinite;
  }
  
  .purple-box {
    height: 50vh;
  }
  
  .specs-note .specs-item .value {
    text-align: justify;
  }
  
  .specs-note .specs-item .label {
    width: 101%;
    height: 37px;
  }
  
  .specs-note .specs-item {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .second-menu-bg {
    display: none;
  }
  
  .blog-box {
    position: relative;
    width: 94%;
    height: 50px;
    background: #6C3F98;
    color: white;
    overflow: hidden;
    line-height: 60px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin: 16px auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-padding-start: 20px;
    -moz-padding-start: 20px;
    padding-left: 20px;
    display: none;
  }
  
  .blog-box #icon {
    width: 30px;
    height: 30px;
  }
  
  .blog-marquee::after,
  .blog-marquee::before {
    background: none;
  }
  
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    left: 15px;
  }
  
  .swiper-pagination-bullet-active {
    background: var(--primary);
  }
  
  .comment-box h4 {
    font-size: 14px;
  }
  
  .comment-box p {
    font-size: 10px;
    color: #000000;
  }
  
  .com span {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
  }
  
  .com {
    margin-top: 7px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }
  
  .product-card {
    width: 200px;
  }
  
  .cart-close-btn {
    display: none;
  }
  
  .cart-close-btn-mob img {
    width: 40px;
    height: 40px;
  }
  
  .cart-close-btn-mob {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    left: 5px;
    top: -52px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .cart-popup {
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    overflow: unset;
  }
  
  .cart-popup-header .mob {
    display: none;
  }
  
  .cart-popup-header {
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
  }
  
  .head-mob {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
  }
  
  .plus {
    display: none;
  }
  
  .num,
  .num-mob {
    font-size: 15px;
  }
  
  .cart-popup-body img {
    -webkit-box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
  }
  
  .plus-mob {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 33%;
    height: 40px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
  }
  
  .cart-popup-overlay {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
  
  .specs-note {
    width: 80%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  
  .specs-columns {
    padding-bottom: 20px;
    position: relative;
    gap: 10px;
  }
  
  .tech {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background: transparent;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  
  .tech-p {
    font-weight: bold;
    font-size: 16px;
    color: var(--primary);
  }
  
  .specs-column {
    width: 80%;
  }
  
  #productDetail {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition: display 0.3s ease;
    -moz-transition: display 0.3s ease;
    -ms-transition: display 0.3s ease;
    -o-transition: display 0.3s ease;
    transition: display 0.3s ease;
  }
  
  .specs-popup-overlay,
  .comment-popup-overlay {
    position: relative;
    -webkit-backdrop-filter: none;
    -moz-backdrop-filter: none;
    -ms-backdrop-filter: none;
    -o-backdrop-filter: none;
    backdrop-filter: none;
    height: 60vh;
    overflow-y: auto;
    margin: 20px 2%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    background-color: #ECECEC;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
  }
  
  .comment-popup-overlay {
    height: auto;
  }
  
  .specs-popup,
  .comment-popup {
    background-color: #ECECEC;
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    padding: 15px;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  
  .comment-box {
    height: auto;
  }
  
  .comment-form {
    padding-bottom: 20px;
  }
  
  .comment-form textarea {
    background: #FFFFFF;
  }
  
  .specs-close-btn {
    display: block;
    position: sticky;
    -webkit-transform: translateY(-120px);
    -moz-transform: translateY(-120px);
    -ms-transform: translateY(-120px);
    -o-transform: translateY(-120px);
    transform: translateY(-120px);
    top: 140px;
    left: 4.5%;
    background: transparent;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 1;
    font-size: 18px;
  }
  
  .comment-popup .specs-close-btn {
    position: relative;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    top: 0;
    left: 0;
  }
  
  .com-tittle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  
  .com-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  
  .related-products-section {
    width: 94%;
    border-radius: 10px;
  }
  
  .pop-price {
    font-size: 13px;
    color: var(--white);
    font-weight: bold;
  }
  
  .pop-mobile {
    position: fixed;
    bottom: 0px;
    right: 3%;
    height: 80px;
    background-color: #6C3F98;
    z-index: 9999;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 0;
    margin: 0;
    -webkit-border-top-left-radius: 10px;
    -moz-border-top-left-radius: 10px;
    -ms-border-top-left-radius: 10px;
    -o-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    -ms-border-top-right-radius: 10px;
    -o-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    width: 94%;
    overflow-x: hidden;
    height: 70px;
  }
  
  .related-products-slider {
    margin-top: 0;
    width: 100%;
    -webkit-justify-content: start;
    -moz-justify-content: start;
    -ms-justify-content: start;
    justify-content: start;
  }
  
  .related-products-header {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  
  .view-all {
    display: none;
    position: absolute;
  }
  
  .view-all-mobile {
    font-size: 24px;
    color: #6C3F98;
    text-decoration: none;
    font-weight: 500;
  }
  
  .view-mobile {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0;
    margin-top: 10px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .buttons .add-to-cart-btn {
    display: none;
  }
  
  .specs-btn,
  .comment-submit {
    min-width: 124px;
    width: 100%;
  }
  .specs-btn h3{
    font-size: 16px;
  }
  .buttons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 14px;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .features {
    margin: 0;
  }
  
  .feature-rating-row {
    margin-bottom: 0;
  }
  
  .product-images img {
    height: 274px;
  background: transparent;

  }
  
  .feature-title {
    font-size: 25px;
  }
  
  .features p {
    font-size: 14px;
  }
  
  .title {
    display: none;
  }
  
  .rating {
    display: none;
  }
  
  .model {
    display: none;
  }
  
  .price-2 {
    display: none;
  }
  
  .rate-mobile {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 10px;
  }
  
  .rate-mob {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 5px;
  }
  
  .rate-mob img {
    width: 20px;
    height: 20px;
    min-width: auto;
  }
  
  .rate-mob span {
    font-size: 16px;
    color: var(--white);
  }
  
  .pro-img-bg {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  
  .thumbs {
    margin: 10px 15px;
  }
  
  .product-detail {
    width: 94%;
    margin: 20px auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    gap: 12px;
    padding: 15px;
  }
  
  .pro-img {
    width: 100%;
    margin-top: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  
  .product-images {
    height: auto;
    background-color: transparent;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  
  .model-mobile {
    font-size: 15px;
    color: #000000;
    font-weight: normal;
  }
  
  .title-mobile {
    color: var(--white);
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: normal;
  }
  
  .info-mobile {
    display: inline;
    text-align: right;
    width: 97%;
  }
  
  .main-image,
  .sec-img {
    display: none;
  }
  
  .swiper-wrapper {
    width: 100%;
  }
  
  .main-swiper-mob {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
  }
  
  .product-images {
    width: 100%;
  }
  
  .stars {
    display: none;
  }
  
  .brands-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
    list-style: none;
    -ms-grid-columns: (minmax(100px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brand-card {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    -moz-transition: -moz-transform 0.2s, -moz-box-shadow 0.2s;
    -ms-transition: -ms-transform 0.2s, -ms-box-shadow 0.2s;
    -o-transition: -o-transform 0.2s, -o-box-shadow 0.2s;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    width: 100%;
    height: 138px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .h1-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: -40px;
    font-size: 22px !important;
  }
  
  .tex2 {
    font-size: 16px;
  }
  
  .kargar-mobile img {
    max-width: 100%;
  }
  
  .kargar-mobile {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .kargar-mobile {
    display: inherit !important;
  }
  
  .kargar {
    display: none;
  }
  
  .main-swiper-img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
  }
  
  .span-price {
    font-size: 13px;
    display: block;
    text-align: center;
    margin: 5px auto 0;
    padding: 5px;
    background: var(--primary);
    color: white;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    font-weight: 500;
    width: 85%;
  }
  
  .brand-box {
    -ms-flex-preferred-size: 116px;
    flex-basis: 116px;
    height: 114px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .product-box img {
    width: 100%;
    height: 142px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid var(--gray-300);
    margin-bottom: var(--space-2);
    -webkit-box-shadow: 1px 1px 1px var(--gray-300);
    -moz-box-shadow: 1px 1px 1px var(--gray-300);
    -ms-box-shadow: 1px 1px 1px var(--gray-300);
    -o-box-shadow: 1px 1px 1px var(--gray-300);
    box-shadow: 1px 1px 1px var(--gray-300);
  }
  
  .product-box h3 {
    font-size: 12px;
    text-align: center;
    height: auto;
    margin-bottom: var(--space-3);
  }
  
  .product-box small {
    font-size: 10px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 0px;
  }
  
  .bgr-product {
    padding-top: 11px;
    padding-bottom: 11px;
    margin-bottom: 0;
  }
  
  .product-box {
    background: var(--white);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 13px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    -ms-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: stretch;
    -moz-justify-content: stretch;
    -ms-justify-content: stretch;
    justify-content: stretch;
  }
  
  .product-box-off {
    font-size: 10px;
    position: relative;
    display: inline-block;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: var(--space-3);
    padding: 0 10px;
  }
  
  .product-box-off::before {
    width: 60%;
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    right: 30px;
    height: 1px;
    background-color: rgb(224, 63, 63);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (max-width: 375px) {
  .info-mobile {
    width: 94%;
  }
  
  .product-card {
    width: 211px;
  }
  
  .product-card img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}