@charset "UTF-8";
/* تعریف متغیرها */
:root {
  /* مقادیر RGB رنگ اصلی برای استفاده در rgba */
  --color-orange-rgb: 245, 102, 20;
  --color-navy: #0D1B2E;
  --color-orange: #FF6A00;
  --color-cream: #F7F3EC;
  --color-gray: #8D96A5;
  /* سایر رنگ‌ها */
  --color-text-hover: #5f5c6b;
  --color-header-bg: #FFFDFC;
  --color-border-light: rgb(250, 176, 135);
  /* رنگ‌های خاکستری و متون */
  --text-dark: #333;
  --text-medium: #555;
  --gray-light: #f1f1f1;
  --scrollbar-thumb: #ccc;
}

/* Write your code here */
.c-price {
  font-weight: bold !important;
  font-size: 21px !important;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: var(--color-orange);
}

.c-f-color {
  color: var(--color-orange);
}

.c-b-color {
  background-color: var(--color-orange);
}

.all-filters-box {
  display: none;
}

.filter-labels {
  width: fit-content;
}

.fixed-height {
  min-height: 45px;
}

.f-bolder {
  font-weight: bolder;
}

.thumb-img {
  width: 20px;
}

.copy-code-btn::before {
  content: "\ecd4";
  font-family: remixicon;
  margin-left: 5px;
}

/* fixed header */
.page-header--middle.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header-r-top {
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-header-r-top.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/*start circles-----------------*/
.outer-circle {
  width: 84px;
  height: 84px;
  border: 3px var(--color-orange) solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.inner-circle {
  background: white;
  width: 100%;
  height: 100%;
  /* استفاده از متغیر RGB برای شفافیت */
  border: 1px rgba(var(--color-orange-rgb), 0.92) solid;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/*end of circles---------------------*/
/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  display: block;
  position: absolute;
  font-size: 0;
  color: var(--color-orange);
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.loader > div {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  display: inline-block;
  float: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-right-color: transparent;
  border-left-color: transparent;
  -webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes ball-clip-rotate-pulse-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes ball-clip-rotate-pulse-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes ball-clip-rotate-pulse-scale {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(0.15);
    transform: translate(-50%, -50%) scale(0.15);
  }
}
@keyframes ball-clip-rotate-pulse-scale {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(0.15);
    transform: translate(-50%, -50%) scale(0.15);
  }
}
/*credi ipgs*/
.card-input-element:checked + .card-input {
  box-shadow: 0 0 1px 1px var(--color-orange);
}

@media (max-width: 768px) {
  .z-index-max {
    z-index: 99999;
  }
}
.remodal-wrapper.remodal-is-opened {
  background-color: rgba(0, 0, 0, 0.29) !important;
}

a.nav-link.custom-link-active {
  border-bottom: 5px var(--color-orange) solid;
}

.custom-mobile-slide {
  height: 30vh !important;
}

.text-primary {
  color: var(--color-navy) !important;
}

a.btn-primary {
  color: #fff !important;
}

.badge {
  background-color: var(--color-orange) !important;
}

.main-swiper-slider .main-swiper-slide a {
  background-size: cover !important;
}

.swiper main-swiper-slider {
  max-width: 1920px !important;
}

.c-param-title {
  background-color: rgba(108, 117, 125, 0.0509803922);
  padding-right: 20px;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .c-search-box-responsive {
    width: 100% !important;
  }
}
/* استایل مشترک و محاسبه خودکار مکان */
.floating-icon {
  position: fixed;
  z-index: 1000;
  /* تنظیمات دسکتاپ به عنوان پیش‌فرض */
  left: 30px;
  /* محاسبه فاصله از پایین: 110px پایه + (شماره آیکون * 75px) */
  bottom: calc(110px + var(--i) * 75px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  background-color: transparent;
  overflow: hidden;
  animation: generic-pulse 2s infinite;
  /* ایجاد تأخیر در انیمیشن بر اساس شماره آیکون */
  animation-delay: calc(var(--i) * 0.5s);
}

.floating-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-icon:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes generic-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/* استایل موبایل (صفحات 767px و کمتر) */
@media (max-width: 767px) {
  .floating-icon {
    left: 12px;
    /* محاسبه مکان جدید برای موبایل */
    bottom: calc(140px + var(--i) * 75px);
  }
}
.swiper-pagination-bullet-active {
  background-color: var(--color-orange);
}

/*new part تنظیمات اختصاصی اسلایدر فروشندگان */
.sellers-swiper-slider {
  /* ایجاد فضای کافی در پایین برای نقاط ناوبری (Pagination) */
  padding-bottom: 45px !important;
}

/* اجبار به هم‌ارتفاع بودن تمام کارت‌های داخل اسلایدر */
.sellers-swiper-slider .swiper-slide {
  height: auto !important;
}

/* ---------------------------------------------------
   جدید: حذف گردی گوشه‌ها برای مربعی و تیز شدن لبه‌ها
--------------------------------------------------- */
.sellers-banner,
.seller-card {
  border-radius: 0 !important;
}

/* استایل پایه کارت فروشنده */
.seller-card {
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--gray-light);
}

/* افکت هاور روی کارت فروشنده (بدون حرکت به بالا) */
.seller-card:hover {
  /* خط transform حذف شد تا کارت به بالا حرکت نکند */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important; /* سایه نرم */
  border-color: var(--color-orange) !important; /* رنگ حاشیه در حالت هاور (رنگ primary) */
}

/* تنظیم دکمه افزودن به سبد در پایین‌ترین قسمت کارت */
.seller-card .mt-auto {
  margin-top: auto !important;
}

/* هم‌اندازه کردن ارتفاع بنر ثابت دسکتاپ با کارت‌های اسلایدر */
@media (min-width: 992px) {
  .col-lg-3 > .sellers-banner {
    /* کسر کردن فضای خالی پایین اسلایدر از ارتفاع کل بنر */
    height: calc(100% - 45px) !important;
  }
}
.sellers-row {
  --bs-gutter-x: 10px;
}

/* استایل کلی پنل و حل مشکل قرارگیری زیر چت */
#purchaseMethodDrawer {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  direction: rtl;
  z-index: 9999999 !important; /* قرارگیری روی تمام المان‌ها مثل گفتینو */
}

/* استایل تب‌های اختصاصی با رنگ سازمانی */
.brand-tabs .nav-link {
  color: var(--color-orange);
  border-radius: 50px;
  margin-left: 0.5rem;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.brand-tabs .nav-link.active {
  background-color: var(--color-orange) !important;
  color: #ffffff !important;
  border-color: var(--color-orange);
}

/* --- تغییرات جدید برای دکمه‌های انتخاب اقساط --- */
/* حالت عادی دکمه‌ها (خاکستری و خنثی) */
.btn-outline-brand {
  color: var(--text-medium); /* رنگ متن تغییر یافته به خاکستری */
  border: 1px solid var(--color-orange); /* حاشیه خاکستری روشن */
  background-color: transparent;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* افکت هاور برای حالت عادی */
.btn-outline-brand:hover {
  box-shadow: 0 0 0 1px var(--color-orange);
  color: var(--text-dark);
}

/* حالت انتخاب‌شده (اعمال رنگ سازمانی، پس‌زمینه محو و افکت هاله) */
.btn-check:checked + .btn-outline-brand {
  color: var(--color-orange);
  border: 1px solid var(--color-orange); /* حاشیه با رنگ سازمانی */
  background-color: rgba(var(--color-orange-rgb), 0.08); /* پس‌زمینه بسیار محو با رنگ سازمانی */
  font-weight: bold;
  box-shadow: 0 0 0 3px rgba(var(--color-orange-rgb), 0.2); /* افکت هاله (Glow) */
}

/* ------------------------------------------------ */
/* دکمه اصلی افزودن به سبد خرید */
.btn-brand {
  background-color: var(--color-orange);
  color: #ffffff;
  border-color: var(--color-orange);
  border-radius: 0.5rem;
}

.btn-brand:hover,
.btn-brand:focus,
.btn-brand:active {
  background-color: #17794b; /* رنگ جایگزین برای هاور */
  color: #ffffff;
}

/* استایل رنگ قیمت */
.price-brand-color {
  color: var(--color-orange);
}

/* --- مدیریت لایه‌ها برای قرارگیری گفتینو زیر پنل Offcanvas --- */
/* محدود کردن z-index ویجت گفتینو */
iframe#goftino_w {
  z-index: 1040 !important; /* این عدد از z-index پیش‌فرض offcanvas بوت‌استرپ کمتر است */
}

/* اطمینان از اینکه پنل موبایل و پس‌زمینه تیره آن در بالاترین لایه هستند */
.offcanvas {
  z-index: 999999 !important;
}

.offcanvas-backdrop {
  z-index: 999998 !important; /* بک‌دراپ باید دقیقا یک لایه زیر خود پنل باشد */
}

.btn-link {
  color: var(--color-orange);
  font-size: 0.85rem;
}

.btn-link:hover {
  color: var(--color-text-hover);
  text-decoration: underline !important;
}

/* ۱. تبدیل باکس اصلی به یک کانتینر انعطاف‌پذیر با حداکثر ارتفاع صفحه */
.ui-sticky-top .product-seller-info.ui-box {
  max-height: calc(100vh - 130px); /* پر کردن ارتفاع صفحه با کسر ارتفاع هدر سایت */
  display: flex;
  flex-direction: column;
  padding-bottom: 0; /* حذف پدینگ پایین تا دکمه خرید کاملا به لبه بچسبد */
  overflow: hidden; /* جلوگیری از بیرون‌زدگی محتوا */
}

/* ۲. اعمال اسکرول فقط روی محتوای داخلی (بخش بالای دکمه خرید) */
.product-seller-info .seller-info-changeable {
  flex-grow: 1; /* پر کردن تمام فضای خالی باکس */
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 15px; /* ایجاد فاصله بین آخرین محتوا و دکمه خرید */
  padding-left: 5px; /* جا باز کردن برای نوار اسکرول */
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

/* استایل مینیمال اسکرول برای کروم، سافاری و اج */
.product-seller-info .seller-info-changeable::-webkit-scrollbar {
  width: 5px;
}

.product-seller-info .seller-info-changeable::-webkit-scrollbar-track {
  background-color: transparent;
}

.product-seller-info .seller-info-changeable::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 10px;
}

.product-seller-info .seller-info-changeable::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-orange);
}

/* ۳. ثابت کردن دکمه سبد خرید در پایین باکس */
.product-seller-info .product-seller--add-to-cart {
  position: sticky;
  bottom: 0;
  padding: 15px 0;
  margin-top: auto; /* هول دادن دکمه به پایین‌ترین نقطه باکس */
  border-top: 1px solid var(--gray-light);
  z-index: 10;
}

/* استایل برای کادرهای مشخصات فنی */
.prd-spec-list .bg-light {
  border: 1px solid var(--gray-light);
  transition: all 0.2s ease-in-out;
}

.spec-value-item:not(:last-child)::after {
  content: "، ";
  white-space: pre;
}

/* =========================================================
   Product Sidebar Custom Design (Brand Color: var(--color-orange))
   ========================================================= */
/* استایل کلی باکس اصلی */
.product-seller-info.ui-box {
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  background-color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.seller-info-changeable {
  padding: 5px 5px 5px 5px;
}

/* استایل پایه‌ای باکس‌های انتخاب روش پرداخت */
.payment-option {
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease-in-out;
  background-color: var(--color-header-bg) !important; /* رنگ خنثی برای حالت انتخاب نشده */
  border-radius: 12px !important;
  width: 100%;
  cursor: pointer;
  display: block;
}

/* مخفی کردن کامل دایره رادیو باتن‌ها */
.payment-option input[type=radio] {
  display: none !important;
}

/* 🌟 جذاب‌ترین بخش: تغییر استایل کل باکس وقتی رادیو باتن اصلی انتخاب می‌شود 🌟 */
.payment-option:has(input[name=main_payment_type]:checked) {
  border-color: var(--color-orange) !important;
  background-color: rgba(var(--color-orange-rgb), 0.08) !important;
  box-shadow: 0 4px 12px rgba(var(--color-orange-rgb), 0.15);
}

/* تغییر رنگ متن عنوان روش پرداخت در حالت انتخاب شده */
.payment-option:has(input[name=main_payment_type]:checked) .payment-title {
  color: var(--color-orange) !important;
}

/* استایل قیمت‌ها */
.product-price-section .price {
  color: var(--color-orange);
  font-weight: 800;
  font-size: 1.35rem;
}

.product-price-section del {
  color: #706c6c;
  font-size: 0.9rem;
  margin-left: 8px;
}

.product-price-section .currency {
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 500;
}

/* استایل ردیف‌های اعتباری و کیف پول */
.product-seller-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--gray-light);
  color: var(--text-medium);
  font-size: 0.9rem;
}

.product-seller-row:first-of-type {
  border-top: none;
}

.product-seller-row-icon i {
  font-size: 1.3rem;
}

.product-seller-row-icon .text-warning {
  color: #f39c12 !important; /* رنگ طلایی برای سکه و اعتبار ثابت نگه داشته شد */
}

/* بخش ثابت دکمه افزودن به سبد خرید در پایین */
.product-seller--add-to-cart {
  padding: 15px 20px;
  border-top: 1px solid var(--gray-light);
  background-color: #FFFFFF;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

/* دکمه اصلی بر اساس رنگ برند */
.product-seller--add-to-cart .btn-primary {
  background-color: var(--color-orange) !important;
  border-color: var(--color-orange) !important;
  color: #FFFFFF !important;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.product-seller--add-to-cart .btn-primary:hover,
.product-seller--add-to-cart .btn-primary:focus {
  background-color: var(--color-orange) !important;
  border-color: var(--color-orange) !important;
  box-shadow: 0 6px 16px rgba(var(--color-orange-rgb), 0.25);
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.price-old {
  font-size: 0.9rem;
}

a.nav-link-light {
  color: #fff !important;
}

a.nav-link-light:hover {
  color: var(--color-orange) !important;
}

/* مرجع موقعیت‌دهی مگامنو */
.page-header--bottom .container {
  position: relative !important;
}

.category-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 25px;
  position: static !important;
}

.category-btn {
  background-color: var(--color-orange);
  color: white;
  padding: 7px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-btn:hover {
  opacity: 0.9;
}

/* انیمیشن ورود */
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= کانتینر اصلی مگامنو ================= */
.mega-menu-container {
  position: absolute;
  top: calc(100% + 8px);
  right: 15px;
  left: 15px;
  width: calc(100% - 30px);
  /* گرادینت ملایم شیشه‌ای */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 243, 236, 0.94) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 0 0 16px 18px;
  box-shadow: 0 8px 20px rgba(13, 27, 46, 0.1), 0 20px 45px rgba(13, 27, 46, 0.14);
  display: none;
  z-index: 1000;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: none;
}

.mega-menu-container.show {
  display: flex !important;
  animation: slideDownFade 0.3s ease forwards;
}

/* ================= تنظیمات عمومی تصاویر منو ================= */
.menu-cat-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 8px;
  padding: 3px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* افکت بزرگ‌نمایی تصویر موقع هاور شدن روی لینک */
.mega-menu-item:hover > .mega-menu-link .menu-cat-img,
.level-2-item:hover > .level-2-link .menu-cat-img,
.level-3-list li a:hover .menu-cat-img {
  transform: scale(1.1);
}

/* ================= سطح اول (ستون راست) ================= */
.mega-menu-level-1 {
  width: 280px; /* برای جا شدن عکس کمی عریض‌تر شد */
  background-color: rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(13, 27, 46, 0.06);
  padding: 15px 0;
  margin: 0;
  list-style: none;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.mega-menu-item {
  position: static !important;
}

.mega-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 4px;
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-right: 3px solid transparent;
  transition: all 0.3s ease, transform 0.3s ease;
  transform: translateX(0);
}

.mega-menu-link .left-icon {
  margin-right: auto;
  font-size: 1.25rem;
  color: #777;
}

.mega-menu-item:hover > .mega-menu-link,
.mega-menu-item.active > .mega-menu-link {
  background-color: rgba(247, 243, 236, 0.9);
  color: var(--color-orange);
  border-right: 3px solid var(--color-orange);
}

.mega-menu-item:hover > .mega-menu-link {
  transform: translateX(-8px);
}

/* کانتینر برای سطح 2 و 3 */
.mega-menu-content-pane {
  flex-grow: 1;
  padding: 0;
  background: transparent;
  display: none;
  position: absolute;
  right: 275px; /* تنظیم بر اساس عرض جدید ستون اول */
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

.mega-menu-item.active .mega-menu-content-pane {
  display: block;
  z-index: 1;
}

.mega-menu-item:hover .mega-menu-content-pane {
  display: block;
  z-index: 10;
}

.mega-menu-level-1:hover .mega-menu-item.active:not(:hover) .mega-menu-content-pane {
  display: none;
}

.mega-menu-level-1:hover .mega-menu-item.active:not(:hover) > .mega-menu-link {
  background-color: transparent;
  color: #4a4a4a;
  border-right: 3px solid transparent;
}

.mega-menu-level-1:hover .mega-menu-item.active:not(:hover) > .mega-menu-link .left-icon {
  color: #777;
}

/* ================= سطح دوم (ستون وسط) ================= */
.level-2-column {
  width: 300px; /* کمی عریض‌تر شد */
  padding: 20px 15px;
  margin: 0;
  list-style: none;
  border-left: 1px solid rgba(13, 27, 46, 0.05);
  height: 100%;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.level-2-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 5px;
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease, transform 0.3s ease;
  transform: translateX(0);
}

.level-2-link .left-icon {
  color: #aaa;
  font-size: 1.1rem;
}

/* هاور سطح دوم */
.level-2-item:hover > .level-2-link,
.level-2-item.active > .level-2-link {
  background-color: rgba(255, 106, 0, 0.08);
  color: var(--color-orange);
  font-weight: 700;
}

.level-2-item:hover > .level-2-link {
  transform: translateX(-8px);
}

/* ================= سطح سوم (ستون چپ / پنل متغیر) ================= */
.level-3-pane {
  position: absolute;
  right: 295px; /* تنظیم بر اساس عرض ستون دوم */
  left: 0;
  top: 0;
  bottom: 0;
  padding: 30px 40px;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.level-2-item.active .level-3-pane {
  display: block;
  z-index: 1;
}

.level-2-item:hover .level-3-pane {
  display: block;
  z-index: 10;
}

.level-2-column:hover .level-2-item.active:not(:hover) .level-3-pane {
  display: none;
}

.level-2-column:hover .level-2-item.active:not(:hover) > .level-2-link {
  background-color: transparent;
  color: #444;
  font-weight: 500;
}

.level-2-column:hover .level-2-item.active:not(:hover) > .level-2-link .left-icon {
  color: #aaa;
}

.level-3-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* فضای بیشتر برای عکس */
  gap: 12px;
}

.level-3-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  color: #555;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease, transform 0.3s ease;
  transform: translateX(0);
}

.level-3-list li a .left-icon {
  color: #ccc;
  font-size: 1.1rem;
}

.level-3-list li a:hover {
  color: var(--color-orange);
  background-color: rgba(247, 243, 236, 0.6);
  transform: translateX(-8px);
}

.level-3-list li a:hover .left-icon {
  color: var(--color-orange);
}

/* ================= استایل اسکرول‌بار ظریف ================= */
.mega-menu-level-1::-webkit-scrollbar,
.level-2-column::-webkit-scrollbar,
.level-3-pane::-webkit-scrollbar {
  width: 5px;
}

.mega-menu-level-1::-webkit-scrollbar-track,
.level-2-column::-webkit-scrollbar-track,
.level-3-pane::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-level-1::-webkit-scrollbar-thumb,
.level-2-column::-webkit-scrollbar-thumb,
.level-3-pane::-webkit-scrollbar-thumb {
  background: rgba(220, 220, 220, 0.8);
  border-radius: 10px;
}

.c-page-header {
  padding: 6px 100px;
}

/* کانتینر اصلی */
.search-box-container {
  position: relative;
  width: 100%;
}
.search-box-container.is-active {
  z-index: 102; /* بالاتر از پرده تیره */
}
.search-box-container.is-active .search-result-container {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ظاهر خود باکس جستجو (کپسول خاکستری) */
.search-wrapper {
  background-color: #f1f2f4 !important; /* رنگ خاکستری ثابت */
  height: 48px;
  border-radius: 50px !important; /* فرم کپسولی */
  padding: 0 15px !important;
  position: relative;
  z-index: 105 !important; /* مهم: قرارگیری در بالاترین لایه (روی باکس سفید) */
}

/* باکس نتایج که کل جستجو را در بر می‌گیرد */
.search-result-container {
  position: absolute;
  top: -12px;
  left: -24px;
  right: -24px;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(18px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(120%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 8px 32px rgba(13, 27, 46, 0.08) !important;
  border-radius: 16px !important;
  padding: 72px 24px 20px 24px !important;
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 104 !important; /* باید زیر search-wrapper (105) باشد */
  margin-top: 0 !important;
}

/* پرده تیره (بدون تغییر) */
.search-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.search-overlay-bg.active {
  opacity: 1;
  visibility: visible;
}

#search-input:focus ~ .custom-placeholder,
#search-input:not(:placeholder-shown) ~ .custom-placeholder {
  display: none;
}

/* کلاس pe-none (همان pointer-events: none در بوت‌استرپ) باعث می‌شود کلیک کاربر از روی متن رد شده و به اینپوت برسد */
.pe-none {
  pointer-events: none;
}

.bg-orange {
  background-color: var(--color-orange);
  border-radius: 25rem;
  width: 100%;
  color: #fff;
  padding: 5px !important;
  font-size: 13px;
}

/* منوی چسبان پایین - موبایل و تبلت */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(13, 27, 46, 0.08);
    border-top: 1px solid var(--color-cream);
    z-index: 1040;
    direction: rtl;
  }
  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-gray);
    flex: 1;
    height: 100%;
    transition: all 0.3s ease;
  }
  .mobile-bottom-nav .nav-item .nav-icon {
    position: relative;
    margin-bottom: 4px;
  }
  .mobile-bottom-nav .nav-item .nav-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
  }
  .mobile-bottom-nav .nav-item .nav-icon .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--color-orange);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
  }
  .mobile-bottom-nav .nav-item .nav-label {
    font-size: 10px;
    font-weight: 500;
  }
  .mobile-bottom-nav .nav-item {
    /* وضعیت فعال یا هاور */
  }
  .mobile-bottom-nav .nav-item.active, .mobile-bottom-nav .nav-item:hover {
    color: var(--color-navy);
  }
  .mobile-bottom-nav .nav-item.active .nav-icon svg, .mobile-bottom-nav .nav-item:hover .nav-icon svg {
    stroke: var(--color-navy);
    fill: rgba(13, 27, 46, 0.1);
    transform: translateY(-2px);
  }
  .mobile-bottom-nav .nav-item.active .nav-label, .mobile-bottom-nav .nav-item:hover .nav-label {
    font-weight: 700;
  }
}

/*
===================================================
   راهکار UX: جلوگیری از تداخل با سایر المان‌های چسبان
===================================================
*/
@media (max-width: 991px) {
  /* ۱. ایجاد فضای خالی در پایین صفحه برای دیده شدن محتوای زیر منو */
  body {
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  }
  /* ۲. استایل برای سایر المان‌های چسبان (مثل دکمه افزودن به سبد خرید در صفحه محصول) */
  /* اگر المان چسبان دیگری دارید، کلاس .secondary-sticky-bottom را به آن بدهید */
  .secondary-sticky-bottom {
    bottom: calc(45px + env(safe-area-inset-bottom, 0px)) !important;
    /* برای اطمینان از قرارگیری روی سایر المان‌های صفحه */
    z-index: 1029 !important;
  }
}
/*
 * ==========================================
 *      Shine Effect Utility Class
 * ==========================================
 */
/*
  ۱. این کلاس را به دکمه یا عنصر مورد نظر خود اضافه کنید.
  <button class="my-button shine-effect">Click Me</button>
*/
.shine-effect {
  position: relative; /* ضروری برای جای‌گیری صحیح افکت */
  overflow: hidden; /* ضروری برای مخفی کردن درخشش در خارج از محدوده عنصر */
}

/*
  ۲. استایل و انیمیشن اصلی درخشش (Shine)
*/
.shine-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%; /* شروع از خارج از کادر در سمت چپ */
  width: 50%;
  height: 100%;
  /* گرادیانت برای ایجاد حالت براق و شیشه‌ای */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  /* زاویه دادن به نور */
  transform: skewX(-25deg);
  /* اتصال انیمیشن */
  animation: shine-ltr 3s infinite;
}

/*
  ۳. تعریف انیمیشن حرکت از چپ به راست (LTR)
*/
@keyframes shine-ltr {
  0% {
    left: -150%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
/* کلاس کمکی برای ایجاد اسکرول افقی یکپارچه */
.scroll-x-auto {
  display: flex !important;
  flex-wrap: nowrap !important; /* جلوگیری از شکستن المان‌ها به خط بعد */
  overflow-x: auto !important; /* فعال‌سازی اسکرول افقی */
  overflow-y: hidden !important;
  white-space: nowrap !important; /* جلوگیری از شکستن متن داخل المان‌ها */
  -webkit-overflow-scrolling: touch; /* اسکرول نرم و روان در گوشی‌های موبایل */
}

/* مخفی کردن نوار اسکرول برای ظاهر زیباتر */
.scroll-x-auto::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-x-auto {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* متغیرهای رنگی فوتر نوبین */
.nobin-footer {
  background: linear-gradient(to bottom, #07101d, #0b1628);
  color: #a0aabf;
  padding-top: 50px;
  font-size: 0.9rem;
  line-height: 1.8;
  direction: rtl;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.nobin-footer a {
  color: #a0aabf;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nobin-footer a:hover {
  color: #FF6A00;
}
.nobin-footer {
  /* ------- ردیف ویژگی‌های فروشگاه (آیکون‌های بالا) ------- */
}
.nobin-footer .nobin-features-row .nobin-features-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow-x: auto; /* برای اسکرول در موبایل در صورت نیاز */
}
.nobin-footer .nobin-features-row .nobin-features-box::-webkit-scrollbar {
  height: 4px;
}
.nobin-footer .nobin-features-row .nobin-features-box::-webkit-scrollbar-thumb {
  background: #FF6A00;
  border-radius: 10px;
}
.nobin-footer .nobin-features-row .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 10px;
  min-width: max-content;
}
.nobin-footer .nobin-features-row .feature-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #4da1ff, #FF6A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nobin-footer .nobin-features-row .feature-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.nobin-footer .nobin-features-row .feature-text .feature-title {
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.nobin-footer .nobin-features-row .feature-text .feature-desc {
  color: #a0aabf;
  font-size: 0.75rem;
}
.nobin-footer .nobin-features-row .feature-separator {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 0 10px;
  flex-shrink: 0;
}
.nobin-footer {
  /* ------- بخش بالا (منوها) ------- */
}
.nobin-footer .nobin-top-section {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nobin-footer .nobin-top-section .nobin-brand-col {
  text-align: center;
  position: relative; /* برای قرارگیری جداکننده */
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-logo-link {
  display: inline-block;
  margin-bottom: 15px;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-logo-img {
  max-width: 130px;
  margin: 0 auto 10px auto;
  display: block;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-slogan {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-slogan .text-orange {
  color: #FF6A00;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-about-text {
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
}
.nobin-footer .nobin-top-section .nobin-brand-col .nobin-social-links a:hover {
  background-color: #FF6A00;
  border-color: #FF6A00;
  transform: translateY(-3px);
}
.nobin-footer .nobin-top-section .nobin-desktop-menus {
  display: flex;
  justify-content: space-between;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col {
  flex: 1;
  padding: 0 15px;
  position: relative; /* برای قرارگیری جداکننده */
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col .nobin-menu-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col .nobin-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col .nobin-menu-list li {
  margin-bottom: 12px;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col .nobin-menu-list li a {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col .nobin-menu-list li a i {
  margin-left: 8px;
  font-size: 1.1rem;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-menu-col .nobin-menu-list li a:hover {
  transform: translateX(-4px);
  color: #FF6A00;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-contact-col {
  flex: 1.2;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-contact-col .nobin-menu-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-contact-col .nobin-menu-list li i {
  font-size: 1.3rem;
  color: #FF6A00;
  margin-left: 10px;
  margin-top: 3px;
}
.nobin-footer .nobin-top-section .nobin-desktop-menus .nobin-contact-col .nobin-menu-list li .nobin-subtext {
  font-size: 0.8rem;
}
.nobin-footer .nobin-top-section {
  /* جداکننده‌های عمودی برای منوها و برند (در دسکتاپ) */
}
@media (min-width: 768px) {
  .nobin-footer .nobin-top-section .menu-separator-col::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
}
.nobin-footer {
  /* ------- منوی آکاردئون موبایل ------- */
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-btn {
  background: transparent;
  color: #fff;
  font-weight: bold;
  box-shadow: none;
  padding: 15px 0;
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-btn::after {
  filter: brightness(0) invert(1);
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-btn { /* اصلاح: فلش همیشه سفید */ }
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-btn:not(.collapsed) {
  color: #FF6A00;
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-btn:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-btn:not(.collapsed) { /* اصلاح: فلش در حالت باز هم سفید بماند */ }
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-body {
  padding: 10px 0 20px 0;
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-body ul li {
  margin-bottom: 10px;
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-body ul li a {
  display: inline-block;
  transition: all 0.3s ease;
}
.nobin-footer .nobin-mobile-menus .nobin-accordion-item .nobin-accordion-body ul li a:hover {
  color: #FF6A00;
  transform: translateX(-4px);
}
.nobin-footer .nobin-mobile-menus {
  /* استایل راه‌های ارتباطی در موبایل */
}
.nobin-footer .nobin-mobile-menus .nobin-contact-mobile .nobin-menu-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.nobin-footer .nobin-mobile-menus .nobin-contact-mobile .nobin-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nobin-footer .nobin-mobile-menus .nobin-contact-mobile .nobin-menu-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.nobin-footer .nobin-mobile-menus .nobin-contact-mobile .nobin-menu-list li i {
  font-size: 1.3rem;
  color: #FF6A00;
  margin-left: 10px;
  margin-top: 3px;
}
.nobin-footer .nobin-mobile-menus .nobin-contact-mobile .nobin-menu-list li .nobin-subtext {
  font-size: 0.8rem;
}
.nobin-footer {
  /* ------- بخش میانی: اسلایدرها و ۳ ستون ------- */
}
.nobin-footer .nobin-middle-section {
  padding: 50px 0 30px 0;
}
.nobin-footer .nobin-middle-section .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 30px !important;
  font-size: 1.1rem;
  font-weight: bold;
}
.nobin-footer .nobin-middle-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF6A00, transparent);
}
.nobin-footer .nobin-middle-section .section-title::before {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background-color: #FF6A00;
  border-radius: 50%;
  box-shadow: 0 0 6px #FF6A00;
  z-index: 1;
}
.nobin-footer .nobin-middle-section {
  /* محدود کردن عرض اسلایدر برای تمرکز در وسط ستون */
}
.nobin-footer .nobin-middle-section .footer-swiper {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 10px 0 45px 0;
  position: relative;
}
.nobin-footer .nobin-middle-section .footer-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.nobin-footer .nobin-middle-section .footer-swiper .swiper-pagination {
  bottom: 0 !important;
}
.nobin-footer .nobin-middle-section .footer-swiper .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}
.nobin-footer .nobin-middle-section .footer-swiper .swiper-pagination-bullet-active {
  background-color: #FF6A00;
  width: 20px;
  border-radius: 10px;
}
.nobin-footer .nobin-middle-section .separator-col {
  position: relative;
}
.nobin-footer .nobin-middle-section {
  /* جداکننده عمودی محو در دسکتاپ */
}
@media (min-width: 768px) {
  .nobin-footer .nobin-middle-section .separator-col::after {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
}
.nobin-footer .nobin-middle-section {
  /* استایل باکس‌های سفید با ابعاد دقیق ۸۵ پیکسل */
}
.nobin-footer .nobin-middle-section .nobin-icon-box, .nobin-footer .nobin-middle-section .nobin-trust-box {
  background-color: #ffffff;
  border-radius: 14px;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.nobin-footer .nobin-middle-section .nobin-icon-box img, .nobin-footer .nobin-middle-section .nobin-icon-box svg, .nobin-footer .nobin-middle-section .nobin-trust-box img, .nobin-footer .nobin-middle-section .nobin-trust-box svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none !important;
}
.nobin-footer .nobin-middle-section .nobin-icon-box:hover, .nobin-footer .nobin-middle-section .nobin-trust-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.nobin-footer {
  /* ------- بخش کپی رایت ------- */
}
.nobin-footer .nobin-bottom-section {
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.nobin-footer .nobin-bottom-section a {
  color: #FF6A00;
}
.nobin-footer .nobin-bottom-section a:hover {
  text-decoration: underline;
}

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