@charset "UTF-8";
/* ---------------------------------------- common ---------------------------------------- */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* ---------------------------------------- main ---------------------------------------- */
.quantity {
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
}
@media screen and (max-width: 767.98px) {
  .quantity {
    width: 80px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .quantity {
    width: 85px;
  }
}
.quantity input {
  height: 100%;
  min-width: 50px;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #121212;
  font-weight: 600;
  line-height: 1.65;
  font-size: 16.5px;
}
.quantity {
  /* quantity input */
}
.quantity-button {
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  background-color: #f5f7f9;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  padding: 15px;
  font-size: 20px;
  line-height: 1.7;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767.98px) {
  .quantity-button {
    height: 30px;
    width: 22px;
    padding: 10px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .quantity-button {
    padding: 12px;
    width: 25px;
    height: 25px;
  }
}
.quantity-button.quantity-up {
  right: 0;
}
.quantity-button {
  /* quantity button quantity up */
}
.quantity-button.quantity-down {
  left: 0;
}
.quantity-button {
  /* quantity button quantity down */
}
.quantity {
  /* quantity button */
} /* quantity */
.not-found {
  color: #333;
  padding: 20px 30px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.06) 0px 7px 29px 0px;
  margin-bottom: 35px;
  border-radius: 5px;
}
@media only screen and (max-width: 991.98px) {
  .not-found {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .not-found .main-btn {
    margin: 0 auto;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .not-found__img {
    margin: 0;
    margin-bottom: 15px;
  }
  .not-found__body {
    align-items: center !important;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .not-found__header {
    justify-content: center !important;
  }
  .not-found .main-btn {
    padding: 15px !important;
    width: 100%;
  }
}
.not-found__img {
  margin-left: 25px;
  width: 50px;
}
.not-found {
  /* not found img */
}
.not-found__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.not-found {
  /* not found body */
}
.not-found__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.not-found {
  /* not found header */
}
.not-found__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.not-found {
  /* not found title */
}
.not-found__text {
  font-size: 14px;
  font-weight: 300;
}
.not-found {
  /* not found text */
} /* not found*/
.product-card {
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px, rgba(241, 178, 44, 0.03) 0 0 0 1px inset;
  max-width: 350px;
  margin: 0 auto;
}
.product-card:has(.main-btn-buy).discount:before {
  bottom: 65px;
}
.product-card:hover .product-card__img.img-first {
  opacity: 0;
}
.product-card:hover .product-card__img.img-second {
  opacity: 1;
}
.product-card__body {
  position: relative;
}
.product-card__body .less-inventory {
  display: flex;
  gap: 2px;
  color: #ef394e;
  font-size: 12px;
  position: absolute;
  top: 51%;
}
.product-card.discount {
  position: relative;
}
.product-card.discount::before {
  content: attr(data-discount);
  text-align: center;
  position: absolute;
  width: 35px;
  height: 30px;
  padding-top: 6px;
  bottom: 18px;
  left: 10px;
  background-color: #f30303;
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 13px;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .product-card.discount::before {
    padding-top: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  .product-card.discount::before {
    width: 25px;
    height: 25px;
    padding-top: 5px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .product-card.discount::before {
    font-size: 13px;
    width: 25px;
    height: 25px;
    padding-top: 5px;
  }
}
.product-card.discount {
  /* discount before */
}
.product-card {
  /* product card discount */
}
.product-card__img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: all 300ms linear;
}
.product-card__img-wrapper {
  position: relative;
  display: block;
}
.product-card__img.img-first {
  opacity: 1;
}
.product-card__img.img-second {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-card {
  /* product card img */
}
.product-card__title {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  line-height: 25px;
  margin-bottom: 25px;
  transition: all 300ms linear;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card__title:hover {
  color: #f16122;
}
.product-card {
  /* product card title */
}
.product-card__price {
  color: #121212;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-card__price::after {
  content: "تومان";
  font-size: 12px;
  font-weight: 300;
  margin-right: 2.5px;
  margin-top: 3px;
}
.product-card__price {
  /* price after */
}
@media screen and (max-width: 991.98px) {
  .product-card__price {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .product-card__price {
    font-size: 16px;
  }
}
.product-card__price .old-price {
  color: rgb(148.25, 148.25, 148.25);
  font-size: 13px;
  font-weight: 300;
  text-decoration: line-through;
  margin: 0 0 0 6px;
}
.product-card__price .old-price::after {
  display: none;
}
.product-card__price {
  /* price old price */
}
.product-card__price.unavailable {
  display: block;
  color: #b6b6b6;
  text-align: center;
}
.product-card__price.unavailable::after {
  display: none;
}
.product-card__price {
  /* price unavailable */
}
.product-card {
  /* product card price */
} /* product card */
.customer-decor-card {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.customer-decor-card:hover::before {
  opacity: 1;
}
.customer-decor-card:hover {
  /* hover before */
}
.customer-decor-card {
  /* customer decor card hover */
}
.customer-decor-card::before {
  content: "\e997";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(18, 18, 18, 0.6);
  opacity: 0;
  z-index: 2;
  transition: all 300ms linear;
  color: #fff;
  font-size: 35px;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.customer-decor-card {
  /* customer decor card before */
}
.customer-decor-card img {
  width: 100%;
}
.customer-decor-card {
  /* customer decor card img */
} /* customer decor card */
.index-widget-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .index-widget-header {
    justify-content: space-between;
  }
}
.index-widget-header .title-line {
  margin: 0;
  color: #50514b;
  font-weight: 800;
  font-size: 20px;
}
@media screen and (max-width: 767.98px) {
  .index-widget-header .title-line {
    font-size: 15px;
  }
}
.index-widget-header {
  /* index widget header title line */
}
.index-widget-header .main-btn {
  margin-right: 20px;
  padding: 13px 25px;
}
.index-widget-header {
  /* index widget header main btn */
}
.index-widget-header .see-more-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0058ff;
}
.index-widget-header .see-more-btn i {
  font-size: 11px;
}
.index-widget-header .see-more-btn__text {
  font-size: 12px;
}

/* index widget header */
.commonSlider {
  position: relative;
}
.commonSlider .owl-stage {
  padding-bottom: 40px;
}
.commonSlider {
  /* common slider owl stage */
}
.commonSlider .owl-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 575.98px) {
  .commonSlider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }
}
.commonSlider .owl-nav .owl-prev,
.commonSlider .owl-nav .owl-next {
  background-color: transparent !important;
  margin: 0;
  transform: translateY(3px);
}
.commonSlider .owl-nav .owl-prev span,
.commonSlider .owl-nav .owl-next span {
  font-size: 25px;
  color: #50514b;
  transition: all 300ms linear;
}
.commonSlider .owl-nav .owl-prev span:hover,
.commonSlider .owl-nav .owl-next span:hover {
  color: #f16122;
}
.commonSlider .owl-nav .owl-prev span,
.commonSlider .owl-nav .owl-next span {
  /* span hover */
}
.commonSlider .owl-nav .owl-prev,
.commonSlider .owl-nav .owl-next {
  /* owl prev and owl next span */
}
.commonSlider .owl-nav {
  /* owl nav owl prev and owl next */
}
.commonSlider .owl-nav .owl-prev {
  margin-left: 150px;
}
.commonSlider .owl-nav {
  /* owl nav owl prev */
}
.commonSlider {
  /* common slider owl nav */
}
.commonSlider .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
@media only screen and (max-width: 575.98px) {
  .commonSlider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 2%;
  }
}
.commonSlider .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  opacity: 0.8;
  background-color: rgb(181.9230769231, 182.8846153846, 177.1153846154);
  border-radius: 5px;
  transition: all 300ms linear;
}
.commonSlider .owl-dots .owl-dot {
  /* owl dot span */
}
.commonSlider .owl-dots .owl-dot.active span {
  width: 20px;
  background-color: #f16122;
  opacity: 1;
}
.commonSlider .owl-dots .owl-dot {
  /* owl dot active span */
}
.commonSlider .owl-dots {
  /* owl dots owl dot */
}
.commonSlider {
  /* common slider owl dots */
} /* common slider */
.product-section .price-box-wrapper .price-box {
  flex-direction: column !important;
}
.product-section .add-to-cart {
  width: 100%;
  padding: 12px 20px;
  background-color: rgb(42.6666666667, 173.3333333333, 58.6666666667);
  margin-right: auto;
}
@media screen and (min-width: 992px) and (max-width: 1399.98px) {
  .product-section .add-to-cart {
    margin-right: initial;
    padding: 12px 10px;
  }
}
.product-section .add-to-cart:hover {
  background-color: #3ccf4e;
}
.product-section .add-to-cart {
  /* add to cart hover */
}
.product-section .add-to-cart .main-btn__text,
.product-section .add-to-cart .main-btn__icon {
  color: #fff;
}
@media screen and (min-width: 992px) and (max-width: 1399.98px) {
  .product-section .add-to-cart .main-btn__text,
  .product-section .add-to-cart .main-btn__icon {
    font-size: 11px;
  }
}
.product-section .add-to-cart {
  /* add to cart main btn text and icon */
}
.product-section {
  /* product section add to cart */
}
.product-section .show-more-wrapper .show-more-link {
  color: #1870ce;
  font-size: 12px;
}
.product-section .show-more-wrapper {
  /* show more wrapper show more link */
}
.product-section {
  /* show more wrapper */
}
.product-section .quantity {
  margin-left: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-section .quantity {
    margin-left: 0;
  }
}
.product-section {
  /* product section quantity */
}
.product-section .relatedSlider {
  margin-bottom: 35px;
}
.product-section {
  /* product section related slider */
}
.product-section .index-widget-header {
  flex-wrap: wrap;
}
.product-section {
  /* product section index widget header */
} /* product section */
.modal .modal-header {
  border: none;
}

.product-gallery-modal {
  z-index: 999;
}
.product-gallery-modal .modal-body {
  padding: 30px !important;
}

.modal-backdrop.show {
  z-index: 998;
}

#customer-modal-zoom,
#gallery-modal-zoom {
  z-index: 9999;
}
#customer-modal-zoom .zoomWindow,
#gallery-modal-zoom .zoomWindow {
  z-index: 9999;
}

.inventory-modal .modal__text {
  font-size: 14px;
  color: #6e6e6e;
}
.inventory-modal .modal__share-icon {
  font-size: 30px;
}
.inventory-modal .modal__share {
  margin-top: 15px;
  padding: 10px;
  background-color: rgb(241.07, 249.05, 242.05);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  transition: all 300ms linear;
}
.inventory-modal .modal__share:hover {
  background-color: rgb(225.15, 242.25, 227.25);
}
.inventory-modal .modal__share:hover .title {
  padding-right: 5px;
}
.inventory-modal .modal__share .title {
  font-size: 18px;
  font-weight: 800;
  color: #38aa46;
  transition: all 300ms linear;
}
.inventory-modal .modal__share .text {
  margin-right: auto;
  font-size: 12.5px;
  font-weight: 400;
  color: #38aa46;
}

.is-video {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.is-video::before {
  content: "\e925";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
  color: #f16122;
  z-index: 2;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.is-video img {
  width: 100%;
  max-width: 100% !important;
}

@media only screen and (max-width: 575.98px) {
  .header-list {
    flex-direction: column;
    gap: 6px 0;
  }
}
.header-list__item {
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-list__item:last-child::after {
  display: none;
}
.header-list__item {
  /* item last child */
}
.header-list__item::after {
  content: "";
  display: block;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background-color: #8d9aa8;
  margin-right: 15px;
}
.header-list__item {
  /* item after */
}
.header-list {
  /* header list item  */
}
.header-list__link {
  font-size: 13px;
}
.header-list__link .title {
  font-size: 14px;
  font-weight: 600;
  color: #6e6e6e;
  margin-left: 5px;
}
.header-list__link {
  /* link title */
}
.header-list__link .text {
  font-size: 12px;
  font-weight: 600;
  color: #121212;
}
.header-list__link {
  /* link text */
}
.header-list {
  /* header list link  */
} /* header list */
.info-list.vertical {
  flex-direction: column;
}
.info-list.vertical .info-list__item {
  margin: 0;
  margin-bottom: 7px;
}
.info-list.vertical {
  /* vertical info list item */
}
.info-list {
  /* info list vertical */
}
.info-list.has-dot .info-list__item {
  position: relative;
  padding-right: 15px;
}
.info-list.has-dot .info-list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #767790;
}
.info-list.has-dot .info-list__text {
  font-size: 12px;
  font-weight: 600;
  color: #514e4e;
}
.info-list.has-dot .info-list__title {
  font-size: 13.5px;
  font-weight: 500;
  color: #3f4064;
}
.info-list {
  /* info list has dot */
}
.info-list.desc {
  margin-top: 20px;
}
.info-list.desc .info-list__item {
  margin-bottom: 15px;
}
.info-list.desc .info-list__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.info-list.desc .info-list__text {
  font-size: 13px;
  margin-left: 10px;
}
.info-list {
  /* info list desc */
}
.info-list__item {
  margin-left: 15px;
}
.info-list {
  /* info list item  */
}
.info-list__text {
  font-size: 14px;
  font-weight: 600;
  color: #6e6e6e;
  margin-left: 5px;
  flex: 0 0 auto;
  width: auto;
}
.info-list {
  /* info list text */
}
.info-list__title {
  font-size: 12px;
  font-weight: 600;
  color: #121212;
  transition: all 300ms linear;
}
.info-list {
  /* info list title  */
} /* info list */
.info-badge-list {
  flex-direction: column;
}
.info-badge-list__item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.info-badge-list {
  /* info badge list item */
}
.info-badge-list__title {
  font-size: 13px;
  font-weight: 600;
  color: #6e6e6e;
  margin-left: 10px;
  flex: 0 0 auto;
  width: auto;
}
.info-badge-list {
  /* info badge list title */
} /* info badge list */
.badge-list {
  gap: 10px;
  flex-wrap: wrap;
}
.badge-list__link {
  display: block;
  padding: 9px 14px;
  border-radius: 5px;
  border: 1px solid rgb(216.75, 216.75, 216.75);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: #6e6e6e;
  box-shadow: none;
  cursor: pointer;
  transition: all 300ms linear;
}
.badge-list__link:hover {
  border-color: #f16122;
  color: #6e6e6e;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.badge-list__link.color {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.badge-list__link.color:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: calc(5px / 2);
  border: 2px solid #fff;
  background-color: var(--product-color);
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0;
}
.badge-list__link {
  /* badge list link color */
}
.badge-list__link.active {
  border-color: #f16122;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.badge-list {
  /* badge list link */
} /* badge list */
.product-gallery-modal .modal-header {
  padding-top: 35px;
}
.product-gallery-modal {
  /* product gallery modal modal header */
}
.product-gallery-modal .modal-body {
  padding: 70px 30px;
}
.product-gallery-modal {
  /* product gallery modal modal body */
}
.product-gallery-modal .p-s-i-m-w {
  width: 100%;
  height: auto;
  white-space: normal;
  max-height: 365px;
  margin-top: 65px;
}
.product-gallery-modal .customer img, .product-gallery-modal .image-slider-wrapper img {
  opacity: 1;
}
.product-gallery-modal .customer .img-w,
.product-gallery-modal .image-slider-in-modal-wrapper .img-w {
  width: 85px;
  height: 85px;
}
.product-gallery-modal .zoom-wrapper {
  margin-right: 0;
}
.product-gallery-modal .zoomWrapper {
  width: 100% !important;
}

.share-modal .modal__text {
  font-size: 14px;
}
.share-modal .copy-btn {
  width: 100%;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 12px;
}
.share-modal .copy-btn.copied #buttonText {
  content: "کپی شد";
}

/* share modal */
.product-info {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  margin-bottom: 45px;
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-info {
    padding: 15px;
  }
}
.product-info__header {
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.product-info__header .favorite-btn {
  border: 1px solid #b8b8b9;
  padding: 8px;
  font-size: 12px;
  color: #b8b8b9;
  cursor: pointer;
}
.product-info__header .favorite-btn i {
  font-size: 16px;
  margin-right: 5px;
}
@media screen and (max-width: 575.98px) {
  .product-info__header .favorite-btn i {
    margin: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .product-info__header .favorite-btn #buttonText {
    display: none;
  }
}
.product-info__header .favorite-btn.active {
  border: 1px solid red;
  color: red;
  animation: pulse 0.5s linear;
}
.product-info__header .favorite-btn.active i {
  color: red;
}
.product-info {
  /* product info header */
}
.product-info__title {
  font-size: 21.5px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.98px) {
  .product-info__title {
    font-size: 17px;
  }
}
.product-info {
  /* product info title */
}
.product-info__subtitle {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.98px) {
  .product-info__subtitle {
    font-size: 14px;
  }
}
.product-info {
  /* product info sub title  */
}
.product-info__box {
  position: absolute;
  top: 30px;
  right: 20px;
}
.product-info {
  /* product info box */
}
.product-info__item {
  margin-bottom: 10px;
}
.product-info {
  /* product info item */
}
.product-info__link:hover i[class^=icon-] {
  color: #f16122;
}
.product-info__link {
  /* link hover */
}
.product-info__link i[class^=icon-] {
  color: #8d9aa8;
  font-size: 20px;
  transition: all 300ms linear;
}
.product-info__link {
  /* link icon */
}
.product-info {
  /* product info link */
} /* product info */
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 768px) {
  .price-box-wrapper {
    top: 0;
  }
}

/* price box wrapper */
.price-box {
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.price-box.inventory-box {
  min-height: auto;
  gap: 5px;
}
.price-box__title {
  font-size: 13.5px;
  font-weight: 750;
  color: #333;
  margin-bottom: 15px;
}
.price-box {
  /* price box title */
}
.price-box__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid #f7f7f7;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.price-box__item.delivery-box {
  background: rgba(240, 97, 34, 0.17);
  padding: 10px;
  border-radius: 5px;
  border: 1px dashed #f16122;
}
.price-box__item.delivery-box .text {
  font-weight: 800;
  font-size: 13px;
}
.price-box__item [class^=icon-] {
  font-size: 20px;
  color: #f16122;
}
.price-box__item .text {
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
}
@media screen and (max-width: 767.98px) {
  .price-box__item .text {
    font-size: 12.5px;
  }
}
.price-box__item.less-inventory [class^=icon-] {
  color: red;
  font-size: 20px;
}
.price-box__item.less-inventory .text {
  color: red;
}
.price-box__item.options {
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 0;
}
.price-box__item.options :first-child {
  margin-top: 15px;
}
.price-box__item.options .price {
  font-weight: 600;
  font-size: 19px;
}
.price-box__item.options .price:after {
  content: "تومان";
  font-size: 9.5px;
  font-weight: normal;
  color: #6e6e6e;
  margin-right: 3px;
}
.price-box {
  /* price box item */
}
.price-box__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.price-box__icon [class^=icon-] {
  font-size: 25px;
  color: #f16122;
}
.price-box {
  /* price box icon */
}
.price-box__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-right: -3px;
}
.price-box__body-header {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.price-box__body-header .text {
  font-size: 13.5px;
}
@media screen and (max-width: 767.98px) {
  .price-box__body-header .text {
    font-size: 12.5px;
  }
}
.price-box__body-header [class^=icon] {
  font-size: 12px;
}
.price-box__body {
  /* body header */
}
.price-box__body-footer {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4.5px;
  padding-bottom: 10px;
}
.price-box__body-footer [class^=icon] {
  font-size: 18px;
  color: #f16122;
  margin-bottom: -7px;
}
.price-box__body-footer span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: -9px;
}
.price-box__body {
  /* body footer */
}
.price-box {
  /* price box body */
}
.price-box__alert {
  width: 100%;
  padding: 13px 10px;
  border-radius: calc(5px / 2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  background-color: rgb(252.9, 231.3, 221.85);
  color: #f16122;
}
.price-box__alert.special {
  box-shadow: 0 2px 2px rgba(241, 97, 34, 0.2);
}
.price-box__alert {
  /* alert special */
}
.price-box__alert [class^=icon-] {
  font-size: 25px;
}
.price-box__alert {
  /* alert icon */
}
.price-box__alert-text {
  font-size: 14.5px;
  font-weight: 700;
}
.price-box__alert {
  /* alert text */
}
.price-box__alert-price {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.price-box__alert-price:after {
  content: "تومان";
  font-size: 9.5px;
  font-weight: normal;
  color: #6e6e6e;
}
.price-box__alert-price {
  /* price after */
}
.price-box__alert {
  /* alert price */
}
.price-box {
  /* price box alert */
}
.price-box__price-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  margin-top: auto;
}
@media screen and (max-width: 767.98px) {
  .price-box__price-wrapper {
    display: none;
  }
}
.price-box {
  /* price box price wrapper */
}
.price-box__price-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.price-box {
  /* price box price-header */
}
.price-box__price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4.5px;
  font-size: 19px;
  font-weight: 600;
  color: #333;
}
.price-box__price:after {
  content: "تومان";
  font-size: 9.5px;
  font-weight: normal;
  color: #6e6e6e;
}
.price-box__price.old-price {
  font-size: 13px;
  font-weight: 400;
  color: #6e6e6e;
  text-decoration: line-through;
}
.price-box__price.old-price:after {
  display: none;
}
.price-box__price {
  /* price old price */
}
.price-box {
  /* price box price */
}
.price-box__discount {
  font-weight: bold;
  background-color: #f12c2c;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  padding: 1px 5px;
}
.price-box {
  /* price box discount */
}
.price-box__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 767.98px) {
  .price-box__footer {
    display: none;
  }
}
.price-box__footer .quantity {
  flex: 0 0 auto;
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .price-box__footer .quantity {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991.98px) {
  .price-box__footer .quantity {
    max-width: 80px;
  }
}
@media only screen and (max-width: 575.98px) {
  .price-box__footer {
    flex-wrap: wrap;
  }
  .price-box__footer .quantity {
    width: calc(100% - 30px) !important;
  }
}
.price-box {
  /* price box footer */
}
.price-box .add-basket-product {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  background-color: #fff;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  padding: 10px 0;
}
@media screen and (max-width: 767.98px) {
  .price-box .add-basket-product {
    display: flex;
  }
}
.price-box .add-basket-product .add-to-cart {
  background-color: #f16122;
  margin: 0;
  padding: 13px 20px;
  width: auto;
}
@media screen and (max-width: 767.98px) {
  .price-box .add-basket-product .add-to-cart {
    padding: 13px 10px;
  }
}
.price-box .add-basket-product .main-btn__text {
  color: #fff;
}
.price-box .add-basket-product .price-box__discount {
  font-size: 12px;
  background: #f91e0a;
  border-radius: 50px;
  padding: 0 7px;
}
@media screen and (max-width: 767.98px) {
  .price-box .add-basket-product .basket-product-wrapper {
    padding: 0 15px;
    width: 100%;
  }
}

/* price box */
/*btn*/
/* مخفی کردن رادیوی اصلی */
.d-flex input[type=radio] {
  display: none;
}

/* لیبل به شکل دکمه */
.d-flex label {
  position: relative;
  padding-right: 40px;
  font-size: 18px; /* بزرگ‌تر شدن متن */
  cursor: pointer;
  user-select: none;
  color: #62717e;
}

/* دایره رادیو */
.d-flex label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; /* اندازه بزرگ */
  height: 24px;
  border: 2px solid #999;
  border-radius: 50%;
  transition: 0.3s;
}

/* دایره داخلی */
.d-flex label::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: #0d6efd; /* رنگ انتخاب */
  border-radius: 50%;
  transition: 0.3s;
}

/* وقتی انتخاب شد */
.d-flex input[type=radio]:checked + label::before {
  border-color: #0d6efd;
}

.d-flex input[type=radio]:checked + label::after {
  transform: translateY(-50%) scale(1);
}

.box-item {
  width: 100%;
}
.box-item .price-box__item.options :first-child {
  margin-top: 0 !important;
}
.box-item s {
  font-size: 14px;
  text-align: end;
  color: #d51212;
}
.box-item p {
  font-weight: 700;
  font-size: 17px;
}
.box-item .Installment {
  font-size: 14px;
  color: grey;
}

.installment-box {
  display: none;
  margin-top: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  background: rgba(240, 97, 34, 0.17);
  animation: slideDown 0.3s ease;
}

.installment-box.active {
  display: block;
  width: 100%;
}

.installment-box .methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.installment-box button {
  background: #fff;
  border: 1px solid #d1d5db;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.installment-box {
  margin-top: 16px;
}

.methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.method-btn {
  background: #fff;
  border: 1px solid #d1d5db;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.method-btn.active {
  border-color: #0d6efd;
  color: #0d6efd;
  background: #eff6ff;
}

.method-content {
  display: none;
  margin-top: 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  animation: fadeSlide 0.3s ease;
}

.method-content.active {
  display: block;
}

.method-content .row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.method-btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
}

.method-btn.active {
  border-color: #d92e2e;
  color: #1a293b;
  background: #eff6ff;
}

.method-content {
  display: none;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  animation: fade 0.3s ease;
}

.method-content.active {
  display: block;
}

.counter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.counter button {
  width: 29px;
  height: 4px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 16px;
  display: flex;
  padding: 9px;
  justify-content: center;
  align-items: center;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-item-price {
  font-size: 14px !important;
  color: grey !important;
}

.title-price {
  text-align: center;
  font-size: 15px;
  color: #948f8f;
  margin-bottom: 21px;
  border-top: 1px solid #e5e5e5;
  padding: 6px;
}

.btn-product {
  width: 40% !important;
}

.btn-secondary {
  padding: 5px !important;
}

.btn-outline-secondary {
  background: unset !important;
  border: unset !important;
  padding: 0 !important;
}

.btn-outline-primary {
  margin: 0 auto;
  background: unset !important;
  border: unset !important;
  font-size: 14px;
  padding: 6px;
}

li {
  list-style: none;
}

.method-content {
  font-size: 12px;
}

.installment-btn-lendo {
  background-color: #f0f0f0; /* رنگ پیش‌فرض */
  color: black;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.installment-btn-lendo.active {
  background: rgba(240, 97, 34, 0.17);
  color: #150b0b; /* متن سفید روی اکتیو */
  border: 1px dashed #f16122;
}

.non-existent {
  background: unset;
  color: red;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  cursor: auto !important;
}

.price-boxs {
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1) !important;
  background: #fff !important;
  flex-direction: column !important;
  padding: 15px !important;
}

.li-close {
  border-bottom: 1px solid #e9e9e9;
  padding: 8px;
}

.price-color {
  color: #f16122;
}

.span-p {
  padding-right: 8px;
}

.select-option.product {
  width: 250px;
}
@media only screen and (max-width: 575.98px) {
  .select-option.product {
    width: 100%;
  }
}
.select-option.color .select-selected.active::before {
  opacity: 1;
}
.select-option.color .select-selected::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0;
  background-color: var(--main-color);
  opacity: 0;
  transition: all 300ms linear;
}
.select-option.color {
  /* color select selected */
}
.select-option.color .select-items div::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0;
  border: 2px solid #fff;
  background-color: var(--product-color);
  z-index: 2;
}
.select-option.color {
  /* color select items div after */
}
.select-option {
  /* select option color */
} /* select option */
.custom-select {
  position: relative;
  right: 0;
  display: block;
  height: 42px;
  top: 0;
  line-height: 42px;
  border: 1.5px solid rgb(229.5, 229.5, 229.5);
  border-radius: 5px;
  transition: all 300ms linear;
}
.custom-select:hover {
  box-shadow: 0 0 4px #cccccc;
}
.custom-select select,
.custom-select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

/* custom select */
.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected.select-arrow-active {
  background-color: transparent !important;
  color: #6e6e6e !important;
}

.select-selected {
  color: #6e6e6e !important;
  background-color: transparent !important;
  top: 3px;
  width: 100%;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  margin-top: 3px;
  content: "";
  right: 10px;
  top: 14px;
  width: 0;
  height: 0;
  border: 5px solid;
  border-color: #858585 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #f16122 transparent;
  margin-top: -3px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #ffffff;
  border-radius: 4px;
  padding-right: 35px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
@media screen and (max-width: 600px) {
  .select-items div,
  .select-selected {
    font-size: 11px;
  }
}

/*style items (options):*/
.select-items {
  width: calc(100% + 0.5px);
  box-shadow: 0 0 0 1px #ced4da;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
  margin-top: -3px;
  background-color: #fff;
  border-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
}
.select-items div {
  color: #6e6e6e;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
}
.select-items div:hover {
  background-color: #f16122;
  color: #fff !important;
  border-radius: 0 !important;
}
.select-items div {
  /* div hover */
}
.select-items {
  /* select item div */
} /* select items */
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.same-as-selected {
  color: #999 !important;
  border-radius: 0 !important;
}

.product-gallery {
  position: relative;
  margin: 0 auto;
}
.product-gallery__main {
  display: flex;
  gap: 30px;
}
.product-gallery__main img {
  width: calc(100% - 48px);
}
.product-gallery__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-gallery__items .icon-share {
  color: #000;
}
.product-gallery__link {
  position: relative;
  display: block;
  opacity: 0.4;
  border-radius: 5px;
  transition: all 300ms linear;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-gallery__link.active {
  opacity: 1;
}
.product-gallery__link.last {
  opacity: 1;
}
.product-gallery__link.last img {
  filter: blur(3.5px);
}
.product-gallery__link-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.product-gallery__link-dot:before, .product-gallery__link-dot:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #f16122;
  border-radius: 50%;
}
.product-gallery__link-dot {
  /* dot before and after */
}
.product-gallery__link-dot .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f16122;
}
.product-gallery__link:hover {
  opacity: 1;
}
.product-gallery__link {
  /* link hover */
}
.product-gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767.98px) {
  .product-gallery__link {
    border-radius: 4.5px;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-gallery__link {
    border-radius: 3px;
  }
}
.product-gallery {
  /* product gallery link */
} /* product gallery */
.p-s-i-m-w {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  overflow-x: auto;
  padding-top: 10px;
} /* p-s-i-m-w */
.nav-tabs {
  width: 100%;
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
}
.nav-tabs .nav-item {
  margin-left: 15px;
}
.nav-tabs {
  /* nav tabs nav item */
}
.nav-tabs .nav-link {
  position: relative;
  color: #333;
  border: none;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 575.98px) {
  .nav-tabs .nav-link {
    font-size: 13px;
    padding: 8px;
  }
}
.nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  border-radius: 2pc 2pc 0 0;
  opacity: 0;
  background-color: #f16122;
  transition: all 300ms linear;
}
.nav-tabs .nav-link {
  /* nav link before */
}
.nav-tabs .nav-link.active {
  color: #f16122;
}
.nav-tabs .nav-link.active::before {
  opacity: 1;
}
.nav-tabs .nav-link {
  /* nav link active */
}
.nav-tabs {
  /* nav tabs nav link */
} /* nav tabs */
.product-description {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 575.98px) {
  .product-description {
    padding: 25px;
  }
}
.product-description .tab-content {
  margin-top: 35px;
}
.product-description {
  /* product description tab content */
}
.product-description__property * {
  font-family: "iranyekan" !important;
}
.product-description__property p {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
}
.product-description {
  /* product description property */
}
.product-description .info-shop__title {
  padding: 12px 15px;
  background: rgb(235.875, 235.875, 235.875);
  border-radius: 6px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  font-weight: 400;
}
.product-description .info-shop {
  /* info shop title */
}
.product-description .info-shop__desc p {
  padding: 12px 15px;
  background: rgb(246.075, 246.075, 246.075);
  border-radius: 6px;
  font-size: 14px;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 10px;
}
.product-description .info-shop {
  /* info shop desc p */
}
.product-description {
  /* product description info shop */
} /* product description */
.modal-gallery-wrapper {
  border-left: 1px solid #cccccc;
}
@media only screen and (max-width: 991.98px) {
  .modal-gallery-wrapper {
    border: none;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.modal-gallery {
  /* modal gallery wrapper */
}
.modal-gallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.modal-gallery__wrapper .is-video {
  border-radius: 5px;
  max-width: 110px;
}
@media screen and (max-width: 575.98px) {
  .modal-gallery__wrapper .is-video {
    max-width: 46.821%;
  }
}
@media screen and (min-width: 576px) and (max-width: 1199.98px) {
  .modal-gallery__wrapper .is-video {
    max-width: 30.93%;
  }
}
.modal-gallery {
  /* modal gallery wrapper */
}
.modal-gallery__img {
  max-width: 110px;
  flex: 1;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 1199.98px) {
  .modal-gallery__img {
    max-width: 30.93%;
  }
}
@media only screen and (max-width: 575.98px) {
  .modal-gallery__img {
    max-width: 46.821%;
  }
}
.modal-gallery {
  /* modal gallery img */
}
.modal-gallery__main {
  width: 95%;
  margin: 0 auto;
}
.modal-gallery {
  /* modal gallery main */
}
.modal-gallery__video {
  display: block;
  width: 100%;
}
.modal-gallery {
  /* modal gallery video */
}
.modal-gallery iframe {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.modal-gallery {
  /* modal gallery iframe */
} /* modal gallery */
.agreement-box {
  position: relative;
  border-radius: 5px;
  border: 1px solid rgb(216.75, 216.75, 216.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0;
  padding: 0 8px;
  transition: all 300ms linear;
}
.agreement-box.carpet-weave {
  width: 340px;
}
@media screen and (max-width: 767.98px) {
  .agreement-box.carpet-weave {
    width: 100%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .agreement-box.carpet-weave {
    width: 100%;
  }
}
.agreement-box:has(.checkbox input[type=checkbox]:checked) {
  border-color: #f16122;
}
.agreement-box:has(.checkbox input[type=checkbox]:checked) .checkbox-label {
  border-color: #f16122;
}
.agreement-box__body {
  width: 100%;
  padding: 10px;
  margin-right: 32px;
  border-right: 1px solid rgb(216.75, 216.75, 216.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agreement-box {
  /* agreement box body */
}
.agreement-box__footer {
  display: flex;
  align-items: center;
  justify-content: end;
}
.agreement-box__footer .main-btn {
  color: #f16122;
  gap: 5px;
}
.agreement-box__footer .main-btn:hover .main-btn__text {
  text-decoration: underline;
}
.agreement-box__footer .main-btn [class^=icon-] {
  font-size: 9px;
}
.agreement-box__footer {
  /* footer main btn */
}
.agreement-box {
  /* agreement box footer */
}
.agreement-box__price {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.agreement-box__price:after {
  content: "تومان";
  font-size: 9.5px;
  font-weight: normal;
}
.agreement-box__price {
  /* price after */
}
.agreement-box {
  /* agreement box price */
}
.agreement-box .checkbox {
  position: absolute;
  top: 57%;
  right: 11.5px;
  transform: translateY(-50%);
}
.agreement-box .checkbox-label {
  top: 0;
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #121212;
  transition: all 300ms linear;
}
@media screen and (max-width: 767.98px) {
  .agreement-box .checkbox-label {
    font-size: 11.5px;
  }
}

.product-prize {
  padding: 12px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #f16122;
  box-shadow: 0 0 24px -10px rgba(241, 97, 34, 0.5);
  width: 100%;
  color: #f16122;
  font-weight: 800;
  font-size: 14px;
}

.product-alert {
  padding: 15px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  border-right: 3px solid;
}
.product-alert.alert {
  border-color: rgb(216.75, 216.75, 216.75);
  background-color: rgb(244.8, 244.8, 244.8);
}
.product-alert.alert .product-alert__icon,
.product-alert.alert .product-alert__text {
  color: #6e6e6e;
}
.product-alert {
  /* product alert alert */
}
.product-alert.info {
  border-color: rgb(118.4130434783, 176.7608695652, 239.0869565217);
  background-color: rgb(232.6086956522, 242.1739130435, 252.3913043478);
}
.product-alert.info .product-alert__icon,
.product-alert.info .product-alert__text {
  color: #1870ce;
}
.product-alert {
  /* product alert info */
}
.product-alert.success {
  border-color: rgb(140.9696969697, 210.0303030303, 144.1818181818);
  background-color: rgb(221.4363636364, 241.7636363636, 222.3818181818);
}
.product-alert.success .product-alert__icon,
.product-alert.success .product-alert__text {
  color: #388e3c;
}
.product-alert {
  /* product alert success */
}
.product-alert.warning {
  border-color: rgb(255, 211.88, 112.2);
  background-color: rgb(255, 251.92, 244.8);
}
.product-alert.warning .product-alert__icon,
.product-alert.warning .product-alert__text {
  color: #ffb200;
}
.product-alert {
  /* product alert warning */
}
.product-alert.danger {
  border-color: rgb(253.3786982249, 119.6213017751, 119.6213017751);
  background-color: rgb(254.7065088757, 230.4934911243, 230.4934911243);
}
.product-alert.danger .product-alert__icon,
.product-alert.danger .product-alert__text {
  color: #a70202;
}
.product-alert {
  /* product alert danger */
}
.product-alert__icon {
  font-size: 18px;
  margin-left: 10px;
}
.product-alert {
  /* product alert icon */
}
.product-alert__text {
  text-align: justify;
  font-size: 13.5px;
  font-weight: 300;
}
.product-alert {
  /* product alert text */
} /* product alert */
#favorite-btn {
  font-weight: 800;
}
#favorite-btn i {
  color: #737373;
}
#favorite-btn.active {
  color: red;
}

.checkbox {
  position: relative;
}
.checkbox-label {
  width: 100%;
  position: relative;
  top: -3px;
  margin-right: 15px;
  margin-bottom: 0;
  font-size: 14px;
  color: #6e6e6e;
  font-weight: 300;
  cursor: pointer;
}
.checkbox {
  /* checkbox label */
}
.checkbox input,
.checkbox svg {
  width: 19px;
  height: 19px;
  display: inline-block;
}
.checkbox {
  /* checkbox input and svg */
}
.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: #fff;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 1px #d0d0d0;
}
.checkbox input:checked {
  box-shadow: inset 0 0 0 1px #d0d0d0;
}
.checkbox {
  /* checkbox input */
}
.checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 19px;
  height: 19px;
  transform: scale(var(--scale, 1)) translateZ(0);
}
.checkbox {
  /* checkbox svg */
}
.checkbox.bounce {
  stroke: #fff;
}
.checkbox.bounce input:checked {
  box-shadow: inset 0 0 0 11px #f16122;
}
.checkbox.bounce input:checked + svg {
  animation: bounce 0.4s linear forwards 0.2s;
}
.checkbox.bounce svg {
  --scale: 0;
}
.checkbox {
  /* checkbox bounce */
} /* checkbox */
@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 767.98px) {
  .product-detail-page {
    padding-bottom: 80px;
  }
}
.product-detail-page .quantity {
  max-width: initial !important;
  margin-left: 0 !important;
}

.btn-outline-primary {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 5px;
  background: unset !important;
  border: unset !important;
  font-size: 14px;
}

li {
  list-style: none;
}

/*# sourceMappingURL=product-detail.css.map */
