main .category {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-second);
  color: var(--color-white);
}
main .product {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main .product .images {
  width: 30%;
}
main .product .images .images-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
}
main .product .images .thumbs-slider {
  margin-top: 1rem;
}
main .product .images .thumbs-slider .swiper-wrapper .swiper-slide {
  width: 25% !important;
  cursor: pointer;
}
main .product .images .thumbs-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 0.5rem;
}
main .product .images .thumbs-slider .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  border-color: var(--color-main);
}
main .product .informations {
  width: 40%;
  box-sizing: border-box;
  padding: 0 0.5rem;
  margin-right: 1rem;
}
main .product .informations h2 {
  font-family: "iranyekanBakhHeavy";
  color: var(--color-second);
}
main .product .informations .p-category {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}
main .product .informations .p-category h3 {
  font-family: "iranyekanBakhBold";
  font-size: 1rem;
}
main .product .informations .p-category a {
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.2s;
  margin-right: 0.25rem;
}
main .product .informations .p-category a:hover {
  color: var(--color-main);
}
main .product .informations h3 {
  font-family: "iranyekanBakhBold";
  font-size: 1.2rem;
  color: #977661;
}
main .product .informations ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style-type: none;
}
main .product .informations ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
main .product .informations ul li svg {
  width: 1.5rem;
  margin-left: 0.5rem;
}
main .product .order {
  width: 30%;
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  background-color: #dfdfdf;
}
main .product .order ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
main .product .order ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
main .product .order ul li svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.5rem;
  position: relative;
  top: -0.15rem;
}
main .product .order .price-box {
  background-color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "iranyekanBakhBold";
}
main .product .order form {
  width: 100%;
  margin-top: 1rem;
}
main .product .order form select {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  border: none;
  box-sizing: border-box;
  margin-bottom: 1rem;
  font-family: "iranyekanBakh";
  font-size: 1rem;
}
main .product .order form button {
  width: 100%;
  background-color: var(--color-second);
  color: var(--color-white);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: "iranyekanBakh";
  font-size: 1rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
main .product .order form button svg {
  width: 1.5rem;
  margin-left: 0.5rem;
}
main .product .order form button:hover {
  background-color: var(--color-main);
}
main .product .order form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
main .related-products {
  margin: 3rem 0 5rem;
}
main .related-products .top {
  width: 100%;
  border-bottom: 2px solid var(--color-gray);
  margin-bottom: 1rem;
}
main .related-products .top h2 {
  display: inline;
  font-size: 1.7rem;
  font-family: "iranyekanBakhHeavy";
  color: var(--color-second);
  border-bottom: 4px solid var(--color-main);
}
main .related-products .top h2 span {
  color: var(--color-main);
}
main .related-products .swiper-wrapper {
  align-items: stretch;
}
main .related-products .swiper-wrapper .swiper-slide {
  height: auto !important;
  display: flex;
}
main .related-products .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.2901960784);
  transition: all 0.5s;
}
main .related-products .product .cover img {
  width: 100%;
  border-radius: 0.75rem;
}
main .related-products .product .title {
  text-align: center;
  font-family: "iranyekanBakhHeavy";
  font-size: 1.2rem;
}
main .related-products .product .title a {
  color: var(--color-second);
  text-decoration: none;
}
main .related-products .product .price {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
}
main .related-products .product:hover {
  box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.6901960784);
}
main .related-products .product .show {
  margin-top: 1rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  background-color: var(--color-second);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
main .related-products .product .show svg {
  width: 1.25rem;
  margin-left: 0.5rem;
}
main .related-products .product .show:hover {
  background-color: var(--color-main);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.popup-box img {
  width: 4rem;
}
.popup-box h2 {
  margin: 2rem 0;
}
.popup-box a {
  background-color: var(--color-main);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.popup-box a:hover {
  background-color: var(--color-for-bg);
  color: var(--color-black);
}
.popup-box button {
  all: unset;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.popup-box button svg {
  width: 1.5rem;
}/*# sourceMappingURL=show.css.map */