@font-face {
  font-family: "IRANSansWeb";
  src: url("../fonts/IRANSansWeb(FaNum).eot");
  src: url("../fonts/IRANSansWeb(FaNum).eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWeb(FaNum).ttf") format("truetype"),
    url("../fonts/IRANSansWeb(FaNum).woff") format("woff"),
    url("../fonts/IRANSansWeb(FaNum).woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

:root {
  --color-primary: #b49054;
  --color-light: #fff;
  --color-gray-light: #f8f8f8;
  --color-gray: #dfdfdf;
  --color-gray-800: rgba(0, 0, 0, 0.5);
  --color-gray-900: #666666;
  --color-dark: #000;
  --color-dark-700: #292828;
  --color-red: red;
  --color-green: #25D366;
}
.border-top{
  border-top: 1px solid var(--color-gray);
  padding-top: 20px;
}
.auto-hide-alert.hidden {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    display: none;
}
/* icon-badge */
.icon-wrapper {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}
main{
  min-height: 500px;
}
.p-10{
    padding:10px;
}
.py-20 {
  padding: 20px 0;
}
.py-10{
  padding: 10px 0;
}
.icon-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}

.text-white {
  color: var(--color-light);
}

.icon-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 19px;
  height: 17px;
  background-color: red;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  pointer-events: none;
}

.center-align {
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
}

.mySwiper {
  padding: 20px 0;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff6f61;
  /* رنگ نقطه فعال */
}

.swiper-slide {
  width: 250px;
}

body {
  direction: rtl;
  color: #333;
  font-family: "IRANSansWeb";
  line-height: 1.7;
}

/* کلاس‌های عمومی lazy load */
.lazy-left,
.lazy-right {
  opacity: 0;
  transform: translateX(50px);
  /* حرکت پیش‌فرض */
  transition: all 0.8s ease;
}

.lazy-right {
  transform: translateX(-50px);
}

.lazy-up {
  opacity: 0;
  transform: translateY(50px);
  /* حرکت از پایین */
  transition: all 0.8s ease;
}

/* وقتی عنصر دیده شد، کلاس show اضافه می‌شود */
.show {
  opacity: 1;
  transform: translateX(0);
}

* {
  box-sizing: border-box;
  font-family: IRANSansWeb;
}

ul {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

.box-shadow {
  box-shadow: 0 0 12px -2px #ddd;

}

.hidden {
  display: none;
}

.title {
  position: relative;
  font-size: 16px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 6px;
}

.no-visible {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.text-primary-color {
  color: var(--color-primary);
}

.pb-45 {
  padding-bottom: 45px;
}

.mt-150 {
  margin-top: 150px;
}
.radius-default{
  border-radius: 5px;
}
.btn-whatsapp {
  background-color: var(--color-green);
  border: none;
  padding: 10px 15px;
  border-radius: 3px;
  margin-top: 30px;
  color: var(--color-light);
  cursor: pointer;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.text-center {
  text-align: center;
}

.mt-50 {
  margin-top: 50px;
}

.no-visible {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.section-title,
.section-title span {
  position: relative;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  display: block;
  color: #333;
  z-index: 1;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-index: 0;
}

.section-title span {
  display: inline-block;
  background-color: #fff;
  padding: 0 50px;
}
.space-between {
  display: flex;
  justify-content: space-between;
}