* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ece9f3;
  min-height: 100svh;
  background-size: 170% 130%;
  font-family: "Vazirmatn", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

header {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  flex-direction: row !important;
  min-height: 70px;
  border-bottom: solid red 2px;
}

header .header-right,
header .header-left {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.square {
  aspect-ratio: 1/1 !important;
  border-radius: 100%;
  width: 50px;
  object-fit: cover;
}

.sidebarBtn {
  border: 0px;
  background-color: transparent;
  width: max-content;
  margin-right: 16px;
  cursor: pointer;
}

.header-right .sidebarBtn,
.header-right a {
  display: flex;
  align-items: center;
}

.user-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .user-img {
    width: 25px;
    height: 25px;
  }

  .user-text {
    font-size: 16px;
  }

  .f-md-16 {
    font-size: 16px;
  }

  .user-link,
  .loginBtn {
    padding: 8px 15px;
    font-size: 14px;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    line-height: 1.5;
    white-space: nowrap;
  }

  .user-link {
    color: #333;
    background-color: #ccc;
    border: 1px solid #ddd;
  }

  .user-link:hover {
    border-color: #dd2a1b;
    transform: translateY(-1px);
  }

  .loginBtn {
    color: black;
    background-color: #dd2a1b;
    border: 1px solid #dd2a1b;
    flex-direction: row-reverse;
  }

  .loginBtn:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 767.98px) {
  .user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
  }

  .loginBtn {
    text-decoration: none;
    padding: 4px 15px;
    border-radius: 12px;
    color: black;
    background-color: #dd2a1b;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-direction: row-reverse;
  }

  .header-right .d-none.d-md-flex {
    display: none !important;
  }
}

aside {
  height: 100svh;
  position: fixed;
  right: -100%;
  background-color: white;
  color: black;
  width: 70svw;
  top: 0px;
  transition: right 0.3s ease-in-out;
  z-index: 10000000000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

body.dark aside {
  background-color: rgb(37, 37, 37);
}

aside.active {
  right: 0px;
}

aside a {
  max-width: fit-content;
  text-decoration: none;
  color: black;
  transition: color 0.2s ease;
}

aside a:hover {
  color: #dd2a1b;
}

aside .active {
  color: #dd2a1b;
}

aside nav ul li {
  transition: all 0.2s ease;
}

aside nav ul li:hover {
  background-color: rgba(253, 193, 60, 0.1);
  border-radius: 8px;
}

div.antiAside {
  position: fixed;
  height: 100svh;
  width: 100svw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000000;
  display: none;
  top: 0px;
}

div.antiAside.active {
  display: block;
}

.header-right .d-flex.align-items-center.ms-md-3 {
  display: flex;
  align-items: center !important;
  height: 100%;
}

.header-right>div>ul {
  display: flex;
  align-items: center !important;
  margin-bottom: 0 !important;
  padding-right: 0 !important;
  height: 100%;
}

.header-right>div>ul li {
  display: flex;
  align-items: center;
  list-style: none;
  position: relative;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.header-right>div>ul>li:not(:last-child)::after {
  content: "|";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 300;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .header-right>div>ul li {
    padding: 0 8px;
    font-size: 12px;
  }

  .header-right>div>ul li:not(:last-child)::after {
    left: -1px;
  }
}

@media (min-width: 992px) {
  .header-right>div>ul li {
    padding: 0 15px;
    font-size: 15px;
  }
}

.user-box {
  display: flex;
  align-items: center;
}

.user-text {
  font-size: 14px;
  font-weight: 500;
}

.f-13 {
  font-size: 13px;
}

.f-md-16 {
  font-size: 13px;
}

.aspect1 {
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 768px) {
  header.d-grid {
    display: flex !important;
    justify-content: space-between;
  }

  .logoName {
    display: flex;
  }
}

/*  */

.imgSection {
  background-image: url(../images/JutZ88JCIEVJiteWyV2ng29BAFhf9KymlMyn7BMG.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .imgSection {
    height: 400px;
  }
}

.title {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 10px 10px;
}

.imgSearch {
  width: 25px;
  height: 25px;
}

.d-flex.justify-content-center.align-items-center > div {
  display: flex;
  align-items: center;
}

.outline {
  outline: 0px;
}

.d-flex.justify-content-center.align-items-center select,
.d-flex.justify-content-center.align-items-center input,
.d-flex.justify-content-center.align-items-center button {
  height: 50px;
  font-size: 12px;
  padding: 0 12px;
  transition: all 0.3s ease;
}

.d-flex.justify-content-center.align-items-center select {
  cursor: pointer;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 100px;
}

.d-flex.justify-content-center.align-items-center input {
  width: 200px;
}

.d-flex.justify-content-center.align-items-center button {
  background-color: #dd2a1b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.d-flex.justify-content-center.align-items-center button img {
  width: 25px;
  height: 25px;
}

@media (min-width: 768px) {
  .d-flex.justify-content-center.align-items-center select,
  .d-flex.justify-content-center.align-items-center input,
  .d-flex.justify-content-center.align-items-center button {
    height: 48px;
    font-size: 14px;
    padding: 0 16px;
  }

  .d-flex.justify-content-center.align-items-center input {
    width: 250px;
  }

  .d-flex.justify-content-center.align-items-center select {
    width: 150px;
  }

  .d-flex.justify-content-center.align-items-center button img {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 992px) {
  .d-flex.justify-content-center.align-items-center select,
  .d-flex.justify-content-center.align-items-center input,
  .d-flex.justify-content-center.align-items-center button {
    height: 54px;
    font-size: 15px;
    padding: 0 20px;
  }

  .d-flex.justify-content-center.align-items-center input {
    width: 420px;
  }

  .d-flex.justify-content-center.align-items-center select {
    width: 150px;
  }

  .d-flex.justify-content-center.align-items-center button img {
    width: 30px;
    height: 30px;
  }
}

.under-nav ul li:last-child a {
  color: #dd2a1b !important;
  opacity: 1 !important;
}

.under-nav ul li:not(:last-child) a {
  position: relative;
  display: inline-block;
  padding-left: 10px;
}

.under-nav ul li:not(:last-child) a::after {
  content: "››";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: none !important;
}

.under-nav ul li a.aNav:hover {
  color: #dd2a1b !important;
  opacity: 1 !important;
}

.under-nav ul li a.aNav:hover::after {
  color: #999 !important;
  opacity: 0.75 !important;
}

@media (max-width: 768px) {
  .ulNav {
    overflow-x: scroll;
  }
}

.aNav {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .container {
    width: 50%;
  }
}

.imgShow {
  background-color: rgb(245, 250, 255);
  border: 0.25px solid rgb(208, 181, 181);
}

.tags-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.tags-box h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #4338ca;
}

.tags span {
  display: inline-block;
  color: black;
  background-color: #ccc;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.tags span:hover {
  background-color: #dd2a1b;
}

.allTrans {
  transition: background-color 0.2s ease-in-out;
}

.header-right>div>ul li {
  display: flex;
  align-items: center;
  list-style: none;
  position: relative;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.header-right>div>ul li:hover {
  color: #dd2a1b;
}

.tags span {
  display: inline-block;
  color: black;
  background-color: #ccc;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.tags span:hover {
  background-color: #dd2a1b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tags-box .col-11 img {
  transition:
    opacity 0.3s ease,
    filter 0.2s ease;
  border-radius: 16px;
}

.imgLi img {
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  transform: scale(1);
}

.imgLi img:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.imgLi img:active {
  transform: scale(0.98);
}

.tags-box .col-11,
.imgLi span {
  overflow: hidden;
  border-radius: 16px;
  display: block;
}

.btnMd:hover {
  color: #44bc7c !important;
  background-color: #fff !important;
  border: 1px solid #44bc7c !important;
}

.btnMdGold:hover {
  background-color: #0b964c !important;
}

.btnMdSilver:hover {
  background-color: #0b964c !important;
}

@media (min-width: 768px) {
  .imgTarah {
    aspect-ratio: 1/1;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .imgTarah {
    aspect-ratio: 1/1;
    width: 50px;
    height: 50px;
  }
}

.spanTarh {
  transition: color 0.1s linear;
}

.spanTarh:hover {
  color: #dd2a1b !important;
}

.containerIMG:hover img {
  cursor: zoom-in;
}

.tab {
  cursor: pointer;
  position: relative;
}

.tab.active {
  color: #dd2a1b;
}

.tab.active::after {
  content: "";
  background-color: #dd2a1b;
  color: #dd2a1b;
  width: 100px;
  height: 1px;
  position: absolute;
  top: 164%;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  div.tab.newest {
    display: none !important;
  }
  div.tab.free {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  div.tab.newest2 {
    display: none !important;
  }
  div.tab.free2 {
    display: none !important;
  }
}

.commentDetailed {
  border: 0.25px solid rgba(104, 95, 95, 0.2);
  overflow: hidden;
}

.commentDetailedOver {
  background-color: #e5e5e5;
}

.commentDetailedUnder {
  text-align: justify;
}

.commentDetailedImg {
  width: 30px;
  height: 30px;
}

.imgShare {
  width: 18px;
  height: 18px;
}

.imgShareFavorite {
  width: 22px;
  height: 22px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.btnMdGold,
.btnMdSilver {
  transition: all 0.3s ease;
}

.download-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extra-download-option {
  display: none;
  overflow: hidden;
  opacity: 0;
}

.extra-download-option > button {
  width: 100%;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-15px);
  }
}

.priceNormal {
  border: 2px solid #0b964c;
  border-radius: 4px;
}

.hrInPrice {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

.btnDownloadInPrice:hover {
  background-color: #0b964c !important;
}

.btnPlusInPrice:hover {
  background-color: #df9f16 !important;
}

.ulInAboutUs li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.ulInAboutUs li a:hover {
  color: #dd2a1b;
  transition: all 0.3s ease;
}

.ulInAboutUs li {
  position: relative;
  padding-right: 20px; /* فاصله دایره از متن */
  list-style: none;
}

.ulInAboutUs li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #dd2a1b;
  border-radius: 50%; /* گرد کردن برای تبدیل به دایره */
}


.statImg2 {
  background-color: #dd2a1b;
}

.statImg2 img {
  width: 50px;
}

@media (min-width: 768px) {
  .statImg2 img {
    width: 80px;
  }
}

.hopeDiv {
  height: 80px;
  display: grid;
  place-items: center;
  width: 70%;
  background-color: #dd2a1b;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .hopeDiv {
    width: 50%;
  }
}

@media (min-width: 1140px) {
  .hopeDiv {
    width: 30%;
  }
}

.sectionContactUs {
  margin-top: 50px;
}

.sectionContactUs div img {
  width: 60px;
}

.socialMedias {
  width: 40px !important;
}
.error {
  width: 30px;
}

.inputz {
  border-radius: 6px;
  border: 0px;
  outline: 0px;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
}

.verify {
  background-color: #dd2a1b;
  border: 0;
}

.gridStr {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}

@media (min-width: 768px) {
  .gridStr {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    column-gap: 30px;
  }
}

@media (min-width: 1190px) {
  .gridStr {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
  }
}

.divInfoPlus1 {
  color: #dd2a1b;
}

.numPlus {
  border: 3px solid #dd2a1b;
  aspect-ratio: 1/1;
  display: inline-block;
  width: 70px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.pOpacity {
  opacity: 88%;
}

.divInfoPlus3 {
  border: 1px solid #c4c4c4;
  border-radius: 4px;
}

.payBtn {
  transition: all 0.3s ease-in-out;
  background-color: #44bc7c;
}

.payBtn2 {
  transition: all 0.3s ease-in-out;
  background-color: #31afd5;
}

.payBtn:hover {
  background-color: #0b964c;
}

.payBtn2:hover {
  background-color: #0c7494;
}

.tags-box-temp {
  background: #eaeaea;
  padding: 15px 20px;
  border: 1px solid #ccc;
}

.tempRadiusTop {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tempRadiusUnder {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.imgCart1 {
  width: 220px;
}

@media (min-width: 768px) {
  .imgCart1 {
    width: 300px;
  }
}

.mhn-table-wrap {
  width: 100%;
}

.mhn-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr 1fr 0.8fr;
  gap: 12px;
  margin-bottom: 12px;
}

.mhn-row > div {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.mhn-header div {
  min-height: 40px;
  background: #efefef;
  font-weight: bold;
}

.mhn-image-box img {
  width: 120px;
  height: 90px;
  object-fit: contain;
}

.mhn-title {
  color: #0d6efd;
  line-height: 1.8;
}

.mhn-delete-btn {
  width: 130px;
  height: 45px;

  border: none;
  border-radius: 25px;

  background: #ef5b72;
  color: #fff;
  cursor: pointer;

  transition: 0.3s;
}

.mhn-delete-btn:hover {
  transform: scale(1.05);
}

.mhn-footer {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 12px;
}

.mhn-footer > div {
  min-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #efefef;
  border: 1px solid #ddd;
  border-radius: 6px;

  font-weight: bold;
}

.mhn-footer-price {
  font-size: 18px;
}

@media (max-width: 768px) {
  .mhn-row {
    grid-template-columns: 1fr;
  }

  .mhn-header {
    display: none;
  }

  .mhn-footer {
    grid-template-columns: 1fr;
  }
}
.popover2 > div > button {
    background-color: #dd2a1b;
    border-radius: 8px;
    width: max-content !important;
    transition: background-color 0.1s linear;
    border: 0px;
    outline: 0px;
    padding: 4px 16px;
    color: white;
    margin: 0 auto;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery img {
        width: 450px;
        height: 450px;
        object-fit: contain;
        object-position: center;
        border-radius: 8px;
        display: block;
    }

.gallery2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

    .gallery2 img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        object-position: center;
        border-radius: 8px;
        display: block;
    }


.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}