@charset "UTF-8";
/* =========================
   BASE
========================= */
@font-face {
  font-family: "IRANYekan";
  src: url("../fonts/eot/iranyekanwebregular(fanum).eot"), url("../fonts/ttf/iranyekanwebregular(fanum).ttf"), url("../fonts/woff/iranyekanwebregular(fanum).woff"), url("../fonts/woff2/iranyekanwebregular(fanum).woff2");
  font-weight: normal;
  font-style: normal;
}
:root {
  --theme-color-100: #3c3476 ;
  --theme-color-200: #4c4092;
  --theme-radius: 15px;
  --border-width: 1px;
  --border-color: #e0e0e2;
  --text-main: #000000;
  --text-secondary: #797878;
  --text-muted: #6c757d;
  --white: #ffffff;
  --gray-100: #efeeee;
  --gray-200: #d5d5d5;
}

body {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  padding: 0;
  margin: 0;
  background: #ffffff;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.hero-bg-text, .logo-header {
  font-weight: bold;
  font-family: "JaguarEnglish" !important;
}

.font-en {
  font-family: en-FontStyle;
}

::selection {
  background: var(--theme-color-100);
  color: #ffffff;
}

::-moz-selection {
  background: var(--theme-color-100);
  color: #ffffff;
}

.bg-black {
  background: #151515 !important;
}

* {
  font-family: "IRANYekan";
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--theme-color);
}

.btn:focus {
  box-shadow: none;
}

.hover-style:hover {
  color: var(--theme-hover-color);
  cursor: pointer;
}

* {
  scrollbar-color: white var(--theme-color-100);
  scrollbar-width: thin;
}

body {
  scroll-behavior: smooth;
}

.theme-color {
  color: var(--theme-color-100);
}

.border-radius {
  border-radius: var(--border-radius-active);
}

.radius-none {
  border-radius: 0;
}

.loading-btn {
  border: none;
  position: relative;
}
.loading-btn .spinner-border {
  width: 1rem;
  height: 1rem;
  margin-left: 8px;
  vertical-align: middle;
}

.button-style {
  margin: 0;
  padding: 8px 12px; /* کمتر شد */
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--theme-color-100);
  border: none;
  border-radius: var(--theme-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  user-select: none;
}

.button-style {
  box-shadow: none;
}

.button-style:hover {
  background: var(--theme-color-200);
}

.button-style::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0.8);
  opacity: 0;
}

.button-style:hover::after {
  animation: pulse-wave 0.6s ease-out 1;
}

@keyframes pulse-wave {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.button-style:hover::after {
  animation: pulse-wave 0.6s ease-out 1;
}

.button-style-light {
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color-100);
  background: #f4f4f4;
  border: none;
  border-radius: var(--theme-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  user-select: none;
}

.button-style-light {
  box-shadow: none;
}

.button-style-light:hover {
  background: #ececec;
}

.button-style-light::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(158, 158, 158, 0.25);
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
}

.button-style:hover::after {
  animation: pulse-wave 0.6s ease-out 1;
}

@keyframes pulse-wave {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.hr-section {
  border: none;
  height: 1px;
  background-color: hsla(0, 0%, 100%, 0.22);
  width: 0;
  margin: 0;
  transition: width 2s ease;
}

.hr-section.active {
  width: 100%;
}

.button-style:hover {
  cursor: pointer;
}

.text-theme {
  color: var(--theme-color-100);
}

.bg-theme {
  background: var(--theme-color-100);
}

.section-title h2 {
  font-weight: 800;
  color: var(--theme-color-100);
}
.section-title p {
  color: #777;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .section-title .title-text {
    font-size: 15px;
  }
  .section-title .title-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.active-menu {
  color: var(--theme-color-100);
  font-weight: bold;
}

/* =========================
   LAYOUTS
========================= */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .header-top {
  position: relative;
}
.main-header .header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-header .header-logo img {
  height: 95px;
  width: 65px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-header .header-search {
  flex: 1;
  max-width: 400px; /* اینو هرچی خواستی بزرگ کن */
}
.main-header .header-search input {
  border: none;
  background: #fbfbfb;
  padding: 8px 15px;
  border-radius: 12px;
  transition: 0.3s;
}
.main-header .header-search input:focus {
  outline: none;
  border: var(--theme-color-100);
  background: #fff;
}
.main-header .header-actions {
  flex-shrink: 0;
}
.main-header .header-actions button {
  display: inline;
}
@media (max-width: 992px) {
  .main-header .header-actions button {
    display: none;
  }
}
.main-header .header-actions .cart-icon {
  color: var(--theme-color-100);
  font-size: 20px;
  cursor: pointer;
}
.main-header .header-nav {
  margin-top: 10px;
}
.main-header .header-nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.main-header .header-nav li {
  border-radius: 10px;
  transition: 0.25s;
}
.main-header .header-nav li.active {
  border-radius: var(--theme-radius);
  font-weight: bold;
  background: #faf9ff;
}
.main-header .header-nav li.active a {
  color: var(--theme-color-100);
}
.main-header .header-nav li.active a .icon {
  color: var(--theme-color-100);
}
.main-header .header-nav li:hover {
  background: #faf9ff;
}
.main-header .header-nav li:hover a {
  color: var(--theme-color-100);
}
.main-header .header-nav li:hover a .icon {
  color: var(--theme-color-100);
}
.main-header .header-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.25s;
}
.main-header .header-nav li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  color: #555;
}
.main-header .header-nav .phone-btn {
  margin-left: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.main-header .header-nav .phone-btn svg {
  width: 20px;
  height: 20px;
  animation: phoneShake 2s infinite;
}
@keyframes phoneShake {
  0%, 100% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-12deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
}
.main-header .search-box {
  position: relative;
}
.main-header .search-box input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border-radius: var(--theme-radius);
  font-size: 14px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(124, 58, 237, 0.08);
}
.main-header .search-box input:focus {
  outline: none;
  background: #fff;
  border: 1px solid #f4f4f4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .main-header .search-box input {
    margin-top: 10px;
  }
}
.main-header .search-box .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.main-header .search-box .search-icon svg {
  color: var(--theme-color-100);
}
.main-header {
  /* Dropdown */
}
.main-header .search-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: var(--theme-radius);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08), 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 18px;
  z-index: 1000;
  overflow: hidden;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.main-header .search-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.main-header .search-dropdown .search-section {
  position: relative;
  z-index: 2;
}
.main-header .search-dropdown .search-section:not(:last-child) {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(124, 58, 237, 0.12);
}
.main-header .search-dropdown .search-section .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-100);
  margin-bottom: 14px;
}
.main-header .search-dropdown .search-section .section-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-color-100);
  box-shadow: 0 0 10px rgba(118, 58, 237, 0.4);
}
.main-header .search-dropdown .search-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-header .search-dropdown .suggestions ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--theme-color-100) var(--theme-color-200);
}
.main-header .search-dropdown .suggestions ul::-webkit-scrollbar {
  width: 6px;
}
.main-header .search-dropdown .suggestions ul::-webkit-scrollbar-track {
  background: #f3f0ff;
  border-radius: 999px;
}
.main-header .search-dropdown .suggestions ul::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--theme-color-100), var(--theme-color-200));
  border-radius: 999px;
  transition: 0.3s;
}
.main-header .search-dropdown .suggestions ul::-webkit-scrollbar-thumb:hover {
  background: #6d28d9;
}
.main-header .search-dropdown .suggestions ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: 0.25s ease;
  flex-shrink: 0;
}
.main-header .search-dropdown .suggestions ul li::before {
  font-size: 14px;
  color: var(--theme-color-100);
  opacity: 0.7;
}
.main-header .search-dropdown .suggestions ul li:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.09), rgba(124, 58, 237, 0.03));
  transform: translateX(-4px);
  color: var(--theme-color-100);
}
.main-header .search-dropdown .popular ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.main-header .search-dropdown .popular ul li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #faf7ff;
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color-100);
  cursor: pointer;
  transition: 0.25s ease;
}
.main-header .search-dropdown .popular ul li:hover {
  background: var(--theme-color-100);
  color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 347px) {
  .main-header .search-dropdown .popular ul li {
    padding: 8px 10px;
    gap: 2px;
  }
}
.main-header .search-dropdown .no-result {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(109, 58, 237, 0.05), rgba(70, 58, 237, 0.01));
  border: 1px dashed rgba(124, 58, 237, 0.15);
}
.main-header .search-dropdown .no-result p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color-100);
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
.main-header .search-dropdown .no-result::before {
  top: 18px;
  right: 20px;
  font-size: 34px;
}
.main-header .search-dropdown .no-result::after {
  bottom: 12px;
  left: 24px;
  font-size: 26px;
  animation-delay: 1.5s;
}
.main-header .search-dropdown .no-result .floating-icon {
  position: absolute;
  color: rgba(124, 58, 237, 0.08);
  font-size: 18px;
  animation: floatQuestion 4s ease-in-out infinite;
}
.main-header .search-dropdown .no-result .floating-icon:nth-child(1) {
  top: 20px;
  left: 30%;
}
.main-header .search-dropdown .no-result .floating-icon:nth-child(2) {
  bottom: 18px;
  right: 28%;
  animation-delay: 1s;
}
@keyframes searchDropdownShow {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes floatQuestion {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Bottom Menu */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-inline: 0;
  transform: translateY(0) scale(1);
  border-radius: 0;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.45s ease, background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}
.mobile-nav.scrolled {
  left: 10px;
  width: calc(100% - 20px);
  transform: translateY(-12px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
.mobile-nav .nav-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 11px;
  transition: color 0.25s ease;
}
.mobile-nav .nav-item .icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.mobile-nav .nav-item span {
  transition: 0.25s ease;
}
.mobile-nav .nav-item.active {
  color: var(--theme-color-100);
}
.mobile-nav .nav-item.active .icon {
  transform: translateY(-2px);
}
.mobile-nav .nav-item.active span {
  color: var(--theme-color-100);
  font-weight: 600;
}
@media (max-width: 992px) {
  .mobile-nav {
    display: flex;
  }
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.mobile-menu-btn .menu-toggle-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12);
}
.mobile-menu-btn .menu-toggle-btn span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 20px;
  transition: 0.35s ease;
}
.mobile-menu-btn .menu-toggle-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.mobile-menu-btn .menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn .menu-toggle-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* =========================================================
   MOBILE DRAWER
========================================================= */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  transition: 0.3s;
}
.mobile-drawer.active {
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer.active .drawer-overlay {
  opacity: 1;
  backdrop-filter: blur(8px);
}
.mobile-drawer.active .drawer-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.mobile-drawer {
  /* OVERLAY */
}
.mobile-drawer .drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  transition: 0.35s ease;
}
.mobile-drawer {
  /* CONTENT */
}
.mobile-drawer .drawer-content {
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  backdrop-filter: blur(30px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.88) translateY(60px);
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}
.mobile-drawer {
  /* HEADER */
}
.mobile-drawer .drawer-header {
  padding: 1.2rem 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-drawer .drawer-header .drawer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.mobile-drawer .drawer-header .drawer-actions .drawer-back-btn,
.mobile-drawer .drawer-header .drawer-actions .close-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: #faf9ff;
  color: var(--theme-color-100);
  font-size: 20px;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer .drawer-header .drawer-actions .drawer-back-btn:hover,
.mobile-drawer .drawer-header .drawer-actions .close-btn:hover {
  transform: scale(1.05);
}
.mobile-drawer .drawer-header .drawer-actions .drawer-back-btn {
  display: none;
}
.mobile-drawer .drawer-header .drawer-actions .drawer-back-btn.show {
  display: flex;
}
.mobile-drawer {
  /* BODY */
}
.mobile-drawer .drawer-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.mobile-drawer {
  /* PAGES WRAPPER */
}
.mobile-drawer .drawer-pages {
  position: relative;
  width: 100%;
  height: 100%;
}
.mobile-drawer {
  /* PAGE */
}
.mobile-drawer .drawer-page {
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(80px);
  pointer-events: none;
  transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-drawer .drawer-page.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-drawer {
  /* LINK BUTTON */
}
.mobile-drawer .drawer-link-btn {
  width: 100%;
  min-height: 60px;
  border: none;
  border-radius: 22px;
  padding: 1rem 1.2rem;
  background: #faf9ff;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1;
}
.mobile-drawer .drawer-link-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(124, 58, 237, 0.07));
}
.mobile-drawer .drawer-link-btn .arrow {
  font-size: 18px;
  color: var(--theme-color-100);
}
.mobile-drawer .drawer-link-btn .icon {
  color: var(--theme-color-100);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.mobile-drawer .drawer-link-btn .icon svg {
  display: block;
}
.mobile-drawer .drawer-link-btn .text {
  display: flex;
  align-items: center;
}

/*# sourceMappingURL=critical.css.map */
