@import url("https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");
@font-face {
  font-family: "Vazir";
  font-weight: normal;
  src: url("../fonts/Vazir.398b39dd0060.ttf") format("truetype");
}
@font-face {
  font-family: "Vazir";
  font-weight: bold;
  src: url("../fonts/Vazir-Bold.8cea4a726814.ttf") format("truetype");
}
:root {
  --swiper-theme-color: #FFFFFF;
  --swiper-pagination-bullet-size: 20px;
  --width-search: 50%;
  --animate-duration: 0.8s;
  --animate-delay: 0.5s;
  --animate-repeat: 1;
}
@media screen and (max-width: 1000px) {
  :root {
    --width-search: 60%;
  }
}
@media screen and (max-width: 700px) {
  :root {
    --width-search: 80%;
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(3, 24, 29, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(3, 24, 29, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(3, 24, 29, 0.3);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes customBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.animate__animated.animate__pulse.animate__infinite.animate__slower {
  --animate-duration: 3s;
}

.animate__delay-1s {
  --animate-delay: 0.3s;
}

.animate__delay-2s {
  --animate-delay: 0.6s;
}

.animate__delay-3s {
  --animate-delay: 0.9s;
}

.product-container {
  max-width: 1400px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
  font-family: "Vazir", serif;
  overflow-x: hidden;
}

.product-header {
  text-align: center;
  margin: 3rem 0;
  font-family: "IRANSans", sans-serif;
}
.product-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  will-change: transform, opacity;
}
.product-header .product-header-line {
  height: 4px;
  width: 80px;
  background-color: #3498db;
  margin: 0 auto;
  border-radius: 2px;
  animation: glow 2s infinite ease-in-out;
  will-change: box-shadow;
}

.product-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  will-change: opacity;
}
.product-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  font-family: "Vazir", serif;
  background-color: rgba(240, 240, 240, 0.5);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-right: 4px solid #03181d;
  transition: all 0.3s ease;
}
.product-intro p:hover {
  transform: scale(1.01);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(240, 240, 240, 0.7);
}

.swiper {
  width: 100%;
  height: 85vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: all 0.5s ease;
  transform-origin: center center;
  will-change: transform, opacity;
}
.swiper:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .swiper {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .swiper {
    height: 60vh;
  }
}

.pr-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  font-family: "Vazir", serif;
  font-size: 18px;
  font-weight: 400;
  color: black;
  position: relative;
}
.pr-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  z-index: 1;
  transition: all 0.5s ease;
}
.pr-bg:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.pr-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 80%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform 0.4s ease-out, box-shadow 0.4s ease;
}
@media (max-width: 1200px) {
  .pr-content {
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
}
.pr-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.pr-content.animated-content {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .pr-content {
    max-width: 90%;
    padding: 1.5rem;
  }
}

.pr-title {
  font-weight: 700;
  font-size: 3rem;
  color: #03181d;
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .pr-title {
    color: white;
    background-color: rgba(3, 24, 29, 0.5);
    padding: 1rem;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .pr-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .pr-title {
    font-size: 1.8rem;
  }
}

.pr-short {
  font-weight: 400;
  max-width: 100%;
  font-family: "Vazir", serif;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
@media (max-width: 1200px) {
  .pr-short {
    display: none;
  }
}
@media (max-width: 768px) {
  .pr-short {
    font-size: 1rem;
  }
}

.pr-button {
  font-family: "Vazir", serif;
  font-size: 1.1rem;
  background-color: rgba(255, 107, 53, 0.8);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
  overflow: hidden;
  position: relative;
  will-change: transform, box-shadow;
}
.pr-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.8s;
}
.pr-button:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}
.pr-button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: all 0.3s ease;
}
.pr-button:hover {
  background-color: rgba(3, 24, 29, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(3, 24, 29, 0.4);
}
.pr-button:hover span {
  transform: translateX(-3px);
}
.pr-button.animate__animated:hover {
  animation-play-state: paused;
}
@media (max-width: 480px) {
  .pr-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

.pr-padding {
  padding: 2rem 20rem;
}
@media screen and (max-width: 1300px) {
  .pr-padding {
    padding: 1rem 10rem;
  }
}
@media screen and (max-width: 870px) {
  .pr-padding {
    padding: 1rem 5rem;
  }
}
@media screen and (max-width: 550px) {
  .pr-padding {
    padding: 1rem;
  }
}

.pr-page {
  background-color: white;
  padding: 1rem;
  border-radius: 5px;
  font-family: "Vazir", serif;
  font-size: 1.25rem;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pr-page-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  height: 35vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Vazir", serif;
}
.pr-page-img h1 {
  width: auto;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 0, 0, 0.4);
}
.pr-page-img2 {
  margin: 4rem 0;
}
.pr-page-img2 img {
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #03181d;
  transition: all 0.3s ease;
  will-change: transform, opacity;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  opacity: 0.7;
  background-color: white;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background-color: #FF6B35;
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}
.swiper-pagination-bullet:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.news-header {
  text-align: center;
  margin-bottom: 2rem;
}
.news-header h1 {
  font-family: "Vazir", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #03181d;
  margin-bottom: 1rem;
}

.news-header-line {
  width: 80px;
  height: 4px;
  background-color: #E9D8A6;
  margin: 0 auto;
  border-radius: 2px;
}

.search-bar {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-bar-input {
  margin: 0 auto 3rem;
  padding: 1rem 0.5rem;
  width: var(--width-search);
  background-color: transparent;
  box-shadow: 2px 2px 2px 2px rgba(3, 24, 29, 0.5);
  font-size: 1rem;
  border-radius: 5px;
  border-color: #1a237e;
  transition: border-width 3s ease;
  font-family: "Vazir", serif;
}
.search-bar-input:focus {
  border-width: 3px;
}
.search-bar-item {
  text-align: center;
}
.search-bar-item .search-bar-father {
  width: var(--width-search);
  background-color: white;
  display: flex;
  margin: 0 auto 3rem;
  border-radius: 5px;
  align-items: center;
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  font-family: "Vazir", serif;
}
.search-bar-item-img {
  display: flex;
  width: 14%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .search-bar-item-img {
    width: 20%;
  }
}
.search-bar-item-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 0 5px 5px 0;
  max-height: 100%;
}
.search-bar-item-text {
  padding-inline: 1rem;
  max-width: 87%;
}

.search-bar-items {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
}

.table {
  width: 100%;
  max-width: 80%;
  overflow-x: auto;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  white-space: nowrap;
}
.table table {
  width: auto;
  margin: 0;
}

.tag-head {
  border-top: 2px solid rgba(229, 229, 229, 0.5);
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
  color: #03181d;
}
.tag-head a {
  background-color: rgba(233, 216, 166, 0.1);
  color: #E9D8A6;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 216, 166, 0.2);
}
.tag-head a:hover {
  background-color: #E9D8A6;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.notFound {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  font-size: 2rem;
  color: #03181d;
  font-weight: 700;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
}

/*# sourceMappingURL=product-style.css.8c83bf8ae87f.map */
