.foruzan-category-sticky {
  width: 100%;
  position: relative;
  direction: rtl;
}

.foruzan-category-wrap {
  width: 100%;
  margin: 15px 0 30px;
  padding: 0;
  direction: rtl;
  font-family: inherit;
}

/* ===============================
   Fixed Sticky Mode - Desktop + Mobile
================================ */
.foruzan-category-sticky.is-fixed {
  min-height: var(--foruzan-sticky-height);
}

.foruzan-category-sticky.is-fixed .foruzan-category-wrap {
  position: fixed !important;
  top: var(--foruzan-sticky-top);
  left: var(--foruzan-sticky-left);
  width: var(--foruzan-sticky-width);
  margin: 0;
  max-height: calc(100vh - var(--foruzan-sticky-top) - 20px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 4px;
}

/* دسکتاپ زیر منوی هدر بماند */
@media (min-width: 768px) {
  .foruzan-category-sticky.is-fixed .foruzan-category-wrap {
    z-index: 10 !important;
  }
}

/* موبایل کمی بالاتر باشد ولی با offset زیر هدر می‌نشیند */
@media (max-width: 767px) {
  .foruzan-category-sticky.is-fixed .foruzan-category-wrap {
    z-index: 90 !important;
  }
}

.foruzan-category-sticky.is-fixed .foruzan-category-wrap::-webkit-scrollbar {
  width: 5px;
}

.foruzan-category-sticky.is-fixed .foruzan-category-wrap::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 20px;
}

.foruzan-category-sticky.is-fixed .foruzan-category-wrap::-webkit-scrollbar-thumb {
  background: #e31022;
  border-radius: 20px;
}

/* checkbox مخفی برای کنترل دراپ‌داون موبایل */
.foruzan-category-toggle {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* دکمه دراپ‌داون فقط در موبایل دیده می‌شود */
.foruzan-category-mobile-head {
  display: none;
}

.foruzan-category-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  direction: rtl;
  font-family: inherit;
}

.foruzan-category-menu li {
  margin: 0 0 10px;
  padding: 0;
}

.foruzan-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border: 1px solid rgba(227, 16, 34, 0.18);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.foruzan-category-link:hover {
  background: linear-gradient(135deg, #000000, #e31022);
  color: #ffffff;
  text-decoration: none;
  border-color: #e31022;
  transform: translateX(-4px);
  box-shadow: 0 10px 25px rgba(227, 16, 34, 0.25);
}

.foruzan-category-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.foruzan-category-name em {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  color: #e31022;
  border-radius: 50%;
  font-size: 12px;
  transition: all 0.25s ease;
}

.foruzan-category-link:hover .foruzan-category-name em {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.foruzan-category-count {
  min-width: 34px;
  height: 24px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  color: #e31022;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.foruzan-category-link:hover .foruzan-category-count {
  background: #ffffff;
  color: #e31022;
}

/* ===============================
   Mobile Dropdown
================================ */
@media (max-width: 767px) {
  .foruzan-category-wrap {
    margin: 15px 0 24px;
    padding-left: 0;
  }

  .foruzan-category-mobile-head {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, #000000, #e31022);
    color: #ffffff;
    border: 1px solid rgba(227, 16, 34, 0.35);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(227, 16, 34, 0.22);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    user-select: none;
    margin: 0;
  }

  .foruzan-category-mobile-head em {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    position: relative;
    transition: all 0.25s ease;
  }

  .foruzan-category-mobile-head em::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    margin-top: -4px;
    transition: all 0.25s ease;
  }

  .foruzan-category-toggle:checked + .foruzan-category-mobile-head em {
    background: #ffffff;
  }

  .foruzan-category-toggle:checked + .foruzan-category-mobile-head em::before {
    border-color: #e31022;
    transform: rotate(135deg);
    margin-top: 4px;
  }

  .foruzan-category-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    padding: 0;
    background: #ffffff;
    border-radius: 12px;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
  }

  .foruzan-category-toggle:checked ~ .foruzan-category-menu {
    max-height: 62vh;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
    padding: 2px 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .foruzan-category-menu li {
    margin-bottom: 8px;
  }

  .foruzan-category-link {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .foruzan-category-link:hover {
    transform: none;
  }

  .foruzan-category-name {
    font-size: 14px;
  }
}
---------------------------------------














------------------------------------------------------

.fc-product-info {
  width: 100%;
  margin: 30px 0;
  padding: 0;
  font-family: inherit;
  color: #000000;
}

.fc-product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.fc-product-header {
  padding: 30px;
  background: linear-gradient(135deg, #000000 0%, #191919 58%, #e31022 100%);
  color: #ffffff;
  position: relative;
}

.fc-product-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 15px;
  background: rgba(227, 16, 34, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.fc-product-header h2 {
  margin: 0 0 12px;
  padding: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
}

.fc-product-header p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 2;
}

.fc-tabs {
  position: relative;
  padding: 30px;
  background: #ffffff;
  scroll-margin-top: 110px;
}

.fc-tab-anchor {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  scroll-margin-top: 110px;
}

.fc-tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  padding: 8px;
  background: #efefef;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.fc-tab-link {
  position: relative;
  display: block;
  padding: 16px 18px;
  background: #ffffff;
  color: #000000;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
}

.fc-tab-link::before {
  content: "";
  position: absolute;
  right: 16px;
  left: 16px;
  bottom: 8px;
  height: 3px;
  background: transparent;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.fc-tab-link:hover {
  color: #e31022;
  border-color: rgba(227, 16, 34, 0.28);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.fc-tab-link-specs {
  background: #000000;
  color: #ffffff;
  border-color: #e31022;
  box-shadow: 0 12px 28px rgba(227, 16, 34, 0.25);
}

.fc-tab-link-specs::before {
  background: #e31022;
}

.fc-tabs:has(.fc-tab-anchor:target) .fc-tab-link {
  background: #ffffff;
  color: #000000;
  border-color: transparent;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
}

.fc-tabs:has(.fc-tab-anchor:target) .fc-tab-link::before {
  background: transparent;
}

.fc-tabs:has(.fc-tab-anchor:target) .fc-tab-link:hover {
  color: #e31022;
  border-color: rgba(227, 16, 34, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.fc-tabs:has(#fc-specs:target) .fc-tab-link-specs,
.fc-tabs:has(#fc-usage:target) .fc-tab-link-usage,
.fc-tabs:has(#fc-standards:target) .fc-tab-link-standards {
  background: #000000;
  color: #ffffff;
  border-color: #e31022;
  box-shadow: 0 12px 28px rgba(227, 16, 34, 0.25);
}

.fc-tabs:has(#fc-specs:target) .fc-tab-link-specs::before,
.fc-tabs:has(#fc-usage:target) .fc-tab-link-usage::before,
.fc-tabs:has(#fc-standards:target) .fc-tab-link-standards::before {
  background: #e31022;
}

.fc-tab-content {
  position: relative;
}

.fc-panel {
  display: none;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 18px;
  animation: fcFadeIn 0.25s ease;
}

.fc-panel-specs {
  display: block;
}

.fc-tabs:has(.fc-tab-anchor:target) .fc-panel {
  display: none;
}

.fc-tabs:has(#fc-specs:target) .fc-panel-specs,
.fc-tabs:has(#fc-usage:target) .fc-panel-usage,
.fc-tabs:has(#fc-standards:target) .fc-panel-standards {
  display: block;
}

.fc-panel h3 {
  margin: 0 0 14px;
  padding: 0 0 12px;
  color: #000000;
  font-size: 21px;
  font-weight: 800;
  border-bottom: 2px solid #efefef;
  position: relative;
}

.fc-panel h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 75px;
  height: 2px;
  background: #e31022;
}

.fc-panel p {
  margin: 0 0 18px;
  color: #333333;
  font-size: 15px;
  line-height: 2;
}

.fc-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fc-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #efefef;
  border-right: 4px solid #e31022;
  border-radius: 12px;
}

.fc-spec-item strong {
  color: #000000;
  font-size: 14px;
  font-weight: 800;
}

.fc-spec-item span {
  color: #333333;
  font-size: 14px;
  text-align: left;
}

.fc-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-check-list li {
  position: relative;
  margin-bottom: 12px;
  padding: 13px 46px 13px 16px;
  background: #efefef;
  color: #222222;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.8;
}

.fc-check-list li::before {
  content: "✓";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #e31022;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.fc-criteria-list {
  display: grid;
  gap: 14px;
}

.fc-criteria-box {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #efefef;
  border-radius: 14px;
  border: 1px solid rgba(227, 16, 34, 0.12);
}

.fc-criteria-box > span {
  width: 14px;
  min-width: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #e31022, #000000);
}

.fc-criteria-box strong {
  display: block;
  margin-bottom: 6px;
  color: #000000;
  font-size: 16px;
  font-weight: 800;
}

.fc-criteria-box p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 1.9;
}

@keyframes fcFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .fc-product-header {
    padding: 24px 20px;
  }

  .fc-product-header h2 {
    font-size: 22px;
  }

  .fc-tabs {
    padding: 20px;
  }

  .fc-tab-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fc-tab-link {
    padding: 14px 15px;
  }

  .fc-spec-grid {
    grid-template-columns: 1fr;
  }

  .fc-spec-item {
    display: block;
  }

  .fc-spec-item span {
    display: block;
    margin-top: 6px;
    text-align: right;
  }

  .fc-criteria-box {
    gap: 12px;
  }
}











































/* =========================================================
   ExGold Persian Header / Blog Template RTL Menu Fix
   Put this at the very bottom of Custom CSS
========================================================= */

/* کل هدر فارسی راست‌چین */
html[lang="fa"],
body,
body#Body {
    direction: rtl !important;
    text-align: right !important;
}

/* جلوگیری از برعکس شدن چینش لوگو و هدر */
header,
.header,
.header-wrap,
.header-area,
.header-replace,
.header-container,
.dng-main,
.dng-main-menu,
.dng-megamenu {
    direction: rtl !important;
    text-align: right !important;
}

/* =========================================================
   Main Menu - منوی اصلی: خانه، سکه طلا، شمش طلا و...
========================================================= */

body .dng-megamenu,
body .dng-megamenu ul,
body .dng-megamenu li,
body .dng-megamenu a,
body .dng-megamenu .primary_structure {
    direction: rtl !important;
    text-align: right !important;
}

/* آیتم‌های منوی اصلی از راست به چپ */
body .dng-megamenu .primary_structure {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    float: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* آیتم‌های منو */
body .dng-megamenu .primary_structure > li {
    float: none !important;
    direction: rtl !important;
    text-align: right !important;
}

/* لینک‌های منو */
body .dng-megamenu .primary_structure > li > a,
body .dng-megamenu .primary_structure > li > a span {
    direction: rtl !important;
    text-align: right !important;
}

/* زیرمنوها */
body .dng-megamenu .sub-menu,
body .dng-megamenu .dropdown-menu,
body .dng-megamenu .megamenu,
body .dng-megamenu .mega-menu,
body .dng-megamenu .dnngo_menuslide,
body .dng-megamenu .dnngo_boxslide {
    direction: rtl !important;
    text-align: right !important;
    right: 0 !important;
    left: auto !important;
}

/* آیتم‌های زیرمنو */
body .dng-megamenu .sub-menu li,
body .dng-megamenu .dropdown-menu li,
body .dng-megamenu .megamenu li,
body .dng-megamenu .mega-menu li,
body .dng-megamenu .sub-menu li a,
body .dng-megamenu .dropdown-menu li a,
body .dng-megamenu .megamenu li a,
body .dng-megamenu .mega-menu li a {
    direction: rtl !important;
    text-align: right !important;
}

/* زیرمنوی سطح دوم به سمت چپ باز شود تا بیرون صفحه نرود */
body .dng-megamenu .sub-menu .sub-menu,
body .dng-megamenu .dropdown-menu .dropdown-menu {
    right: 100% !important;
    left: auto !important;
}



/* =========================================================
   Exact Header Position Fix
   منوی کوچک از سمت راست هدر شروع شود نه چپ
========================================================= */

body header .row,
body .header .row,
body .header-wrap .row,
body .header-area .row {
    direction: rtl !important;
}


/* =========================================================
   Social Icons / Cart / Language
   این‌ها خراب یا برعکس نشوند
========================================================= */

body a[href*="whatsapp"],
body a[href*="instagram"],
body a[href*="wa.me"],
body a[href*="api.whatsapp"],
body a[href*="/en"],
body a[href*="/EN"],
body .fa,
body .fab,
body .fas,
body .shopping-cart,
body .cart,
body .language,
body .language-object {
    direction: ltr !important;
    text-align: center !important;
}

/* آیکن‌های سمت راست هدر در جای درست بمانند */
body header :has(a[href*="whatsapp"]),
body header :has(a[href*="instagram"]),
body .header :has(a[href*="whatsapp"]),
body .header :has(a[href*="instagram"]) {
    direction: ltr !important;
}

/* =========================================================
   Blog Template Header Safety
   قالب بلاگ جداگانه است، این بخش آن را هم کنترل می‌کند
========================================================= */

body .ArticleView,
body .ArticleView *,
body .modern-centered-article,
body .modern-centered-article *,
body .article-container,
body .article-container * {
    direction: rtl;
    text-align: right;
}

/* ولی عکس‌ها، آیکن‌ها و شبکه‌های اجتماعی داخل مقاله خراب نشوند */
body .ArticleView img,
body .ArticleView picture,
body .ArticleView .SocialIcons,
body .ArticleView .SocialIcons *,
body .modern-centered-article img,
body .modern-centered-article picture,
body .modern-centered-article .SocialIcons,
body .modern-centered-article .SocialIcons * {
    direction: ltr !important;
    text-align: center !important;
}

/* =========================================================
   Mobile Header / Mobile Menu
========================================================= */

body .mobilemenu-main,
body .mobilemenu-main .m-menu,
body .mobilemenu-main .gomenu,
body .mobilemenu-main .gomenu li,
body .mobilemenu-main .gomenu li a {
    direction: rtl !important;
    text-align: right !important;
}

body .mobilemenu-main .gomenu li .arrows {
    left: 15px !important;
    right: auto !important;
}

/* =========================================================
   Final Force
========================================================= */

body .dng-megamenu .primary_structure,
body .dng-megamenu .primary_structure > li,
body .dng-megamenu .primary_structure > li > a {
    direction: rtl !important;
    text-align: right !important;
}



















/* =========================================================
   FORUZAN GLOBAL PERSIAN FONT
   Main Font: IRANSans
   Safe for DNN / Menu / Icons
========================================================= */

/* IRANSans Regular */
@font-face {
    font-family: 'IRANSans';
    src: url('/Portals/_default/Skins/glend/resource/fonts/IRANSansWeb.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* IRANSans Bold */
@font-face {
    font-family: 'IRANSans';
    src: url('/Portals/_default/Skins/glend/resource/fonts/IRANSansWeb_Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* IRANYekan Backup */
@font-face {
    font-family: 'IRANYekan';
    src: url('/Portals/_default/Skins/glend/resource/fonts/iranyekanwebregular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   Apply Font Site-wide
   فقط فونت، بدون تغییر direction منوها
========================================================= */

html,
body,
#Body,
form,
.Normal,
.NormalDisabled,
.NormalDeleted,
.Head,
.SubHead,
.SubSubHead,
.CommandButton,
.StandardButton,
.dnnForm,
.dnnFormItem,
.DnnModule,
.dnnModule,
.ContentPane,
.ArticleView,
.fc-product-info,
.foruzan-product-article,
.foruzan-about-hero,
.foruzan-news-article-hero,
.foruzan-lamtec-content,
.foruzan-lamtec-services,
.foruzan-product-category-list {
    font-family: 'IRANSans', 'IRANYekan', Tahoma, Arial, sans-serif !important;
}

/* متن‌های عمومی */
body p,
body div,
body span,
body a,
body li,
body ul,
body ol,
body table,
body th,
body td,
body label,
body input,
body textarea,
body select,
body button,
body small,
body strong,
body b,
body em,
body blockquote {
    font-family: 'IRANSans', 'IRANYekan', Tahoma, Arial, sans-serif !important;
}

/* تیترها */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.ArticleView h1,
.ArticleView h2,
.ArticleView h3,
.ArticleView h4,
.ArticleView h5,
.ArticleView h6,
.fc-product-info h1,
.fc-product-info h2,
.fc-product-info h3,
.fc-product-info h4,
.fc-product-info h5,
.fc-product-info h6,
.foruzan-about-title,
.fc-product-header h1,
.fc-product-header h2,
.fc-product-header h3 {
    font-family: 'IRANSans', 'IRANYekan', Tahoma, Arial, sans-serif !important;
    font-weight: 700;
}

/* محتوای فارسی راست‌چین شود، اما نه کل منوی سایت */
.ArticleView,
.fc-product-info,
.foruzan-product-article,
.foruzan-lamtec-content,
.foruzan-lamtec-services,
.foruzan-product-category-list {
    direction: rtl !important;
    text-align: right !important;
}

/* منو خراب نشود */
header,
nav,
.navbar,
.navbar-nav,
.menu,
.main-menu,
.dnnMenu,
#dnnMenu,
.megamenu {
    unicode-bidi: normal !important;
}

/* آیکون‌ها خراب نشوند */
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
.fa-solid,
.fa-regular,
.fa-brands,
.glyphicon,
[class^="fa-"],
[class*=" fa-"],
[class^="glyphicon-"],
[class*=" glyphicon-"] {
    font-family: FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Brands", "Glyphicons Halflings" !important;
}

/* SVG ها دست‌نخورده بمانند */
svg,
svg * {
    font-family: initial !important;
}






























.foruzan-products-carousel,
.foruzan-products-carousel * {
  box-sizing: border-box;
}

.foruzan-products-carousel {
  width: 100%;
  direction: rtl;
  background: radial-gradient(circle at top left, rgba(227, 16, 34, 0.22), transparent 34%),
              linear-gradient(135deg, #050505 0%, #101010 54%, #1a0000 100%);
  border: 1px solid rgba(227, 16, 34, 0.35);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
}

.foruzan-products-carousel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  background: rgba(227, 16, 34, 0.18);
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.foruzan-products-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.foruzan-products-label {
  display: inline-block;
  color: #ffffff;
  background: rgba(227, 16, 34, 0.18);
  border: 1px solid rgba(227, 16, 34, 0.55);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 8px;
}

.foruzan-products-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  position: relative;
  padding-right: 16px;
}

.foruzan-products-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 5px;
  height: 28px;
  background: #e31022;
  border-radius: 20px;
  box-shadow: 0 0 16px rgba(227, 16, 34, 0.8);
}

.foruzan-products-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.foruzan-products-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(227, 16, 34, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 30px;
  line-height: 36px;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.foruzan-products-arrow:hover,
.foruzan-products-arrow:focus {
  background: #e31022;
  border-color: #e31022;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 16, 34, 0.32);
  outline: none;
}

.foruzan-products-viewport {
  width: 100%;
  overflow: hidden;
  direction: ltr;
  position: relative;
  z-index: 2;
  scroll-behavior: smooth;
}

.foruzan-products-track {
  display: flex;
  gap: 22px;
  align-items: stretch;
  direction: ltr;
  padding: 2px 2px 12px;
}

.foruzan-product-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: calc((100% - 44px) / 3);
  direction: rtl;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.foruzan-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 16, 34, 0.65);
  box-shadow: 0 24px 42px rgba(227, 16, 34, 0.16);
}

.foruzan-product-image-link {
  display: block;
  width: 100%;
  height: 215px;
  overflow: hidden;
  background: #111111;
  position: relative;
}

.foruzan-product-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 58%);
  pointer-events: none;
}

.foruzan-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.foruzan-product-card:hover .foruzan-product-image {
  transform: scale(1.07);
  filter: contrast(1.06) saturate(1.05);
}

.foruzan-product-content {
  padding: 18px;
  text-align: center;
}

.foruzan-product-categories {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 8px;
  text-align: center;
}

.foruzan-product-categories a {
  color: #ff4354 !important;
  text-decoration: none !important;
  font-weight: 800;
}

.foruzan-product-categories a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.foruzan-product-title {
  display: block;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.8;
  min-height: 62px;
  margin-bottom: 10px;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.foruzan-product-title:hover,
.foruzan-product-title:focus {
  color: #ff3446 !important;
  text-decoration: none !important;
}

.foruzan-product-summary {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 2;
  min-height: 88px;
  margin-bottom: 18px;
  text-align: center;
}

.foruzan-product-more,
.foruzan-product-more:link,
.foruzan-product-more:visited,
.foruzan-product-more:active,
.foruzan-product-more:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  background: #e31022 !important;
  color: #ffffff !important;
  border: 1px solid #ff4354;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 12px 24px rgba(227, 16, 34, 0.28);
}

.foruzan-product-more:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .foruzan-product-card {
    flex-basis: calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
  }

  .foruzan-products-title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .foruzan-products-carousel {
    padding: 16px;
    border-radius: 18px;
  }

  .foruzan-products-carousel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .foruzan-products-arrows {
    width: 100%;
    justify-content: flex-start;
  }

  .foruzan-product-card {
    flex-basis: 86%;
    min-width: 86%;
  }

  .foruzan-product-image-link {
    height: 190px;
  }

  .foruzan-product-title {
    font-size: 16px;
    min-height: auto;
  }

  .foruzan-product-summary {
    min-height: auto;
  }
}













































/* ========================= FORUZAN LATEST NEWS / ARTICLES - FINAL FIX ========================= */

.latest-posts-row,
.foruzan-latest-news,
.latest-posts-row * {
  box-sizing: border-box;
}

.latest-posts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  direction: rtl;
  text-align: right;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}

/* ستون‌ها */
.latest-post-col {
  flex: 1 1 calc(33.333% - 24px);
  max-width: calc(33.333% - 24px);
  box-sizing: border-box;
  position: relative;
}

/* کارت اصلی */
.Industry-blogbox01,
.Industry-blogbox01:link,
.Industry-blogbox01:visited,
.Industry-blogbox01:active,
.Industry-blogbox01:focus {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  cursor: pointer;

  border-radius: 24px;
  border: 1px solid rgba(227, 16, 34, 0.34);

  background:
    radial-gradient(circle at 14% 12%, rgba(227, 16, 34, 0.16), transparent 34%),
    linear-gradient(145deg, #000000 0%, #080808 58%, #1b0005 100%);

  text-decoration: none !important;
  color: #ffffff;
  font-family: inherit;

  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.26),
    0 0 26px rgba(227, 16, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  transform: translateY(0);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

/* حذف هرگونه tooltip داخلی/رفتار عجیب */
.Industry-blogbox01[title] {
  pointer-events: auto;
}

/* تصویر کارت */
.Industry-blogbox01 .pic {
  position: relative;
  display: block;
  width: 100%;
  height: 205px;
  min-height: 205px;
  overflow: hidden;
  background: #090909;
  z-index: 2;
  border-radius: 24px 24px 0 0;
}

.Industry-blogbox01 .pic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.68) 100%),
    radial-gradient(circle at 50% 42%, rgba(227, 16, 34, 0.15), transparent 48%);
}

.Industry-blogbox01 .pic::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -2px;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  z-index: 3;
  background: #e31022;
  box-shadow: 0 0 18px rgba(227, 16, 34, 0.75);
}

.Industry-blogbox01 .pic img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: brightness(0.76) contrast(1.12) saturate(1.04);
  transform: scale(1.02);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

/* لایه هاور کنترل‌شده */
.Industry-blogbox01::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 10%, rgba(227, 16, 34, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(227, 16, 34, 0.13) 100%);
  transition: opacity 0.30s ease;
}

/* محتوا */
.Industry-blogbox01 .content {
  position: relative;
  z-index: 3;
  flex: 1;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  min-height: 225px;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 16, 34, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 100%);
}

/* هدر محتوا */
.Industry-blogbox01 .content-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  color: #ff3044;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.8;
  text-align: right;
}

.Industry-blogbox01 .content-header .date,
.Industry-blogbox01 .content-header .category,
.Industry-blogbox01 .content-header .sep,
.Industry-blogbox01 .content-header time {
  color: #ff3044;
}

/* عنوان */
.Industry-blogbox01 .content-body .title {
  margin: 0 0 13px;
  padding: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.65;
  font-weight: 950;
  text-align: right;
  letter-spacing: -0.2px;
}

.Industry-blogbox01 .title a {
  color: inherit;
  text-decoration: none !important;
}

/* خلاصه */
.Industry-blogbox01 .content-body .excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 2;
  font-weight: 650;
  text-align: right;
}

/* فوتر */
.Industry-blogbox01 .content-footer {
  margin-top: auto;
  padding-top: 22px;
}

.Industry-blogbox01 .content-footer .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(227, 16, 34, 0.14);
  border: 1px solid rgba(227, 16, 34, 0.46);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.8;
  transition:
    color 0.30s ease,
    background 0.30s ease,
    border-color 0.30s ease,
    transform 0.30s ease;
}

.Industry-blogbox01 .content-footer .link i {
  color: inherit;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-1px);
}

/* هاور اصلاح‌شده */
.Industry-blogbox01:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 16, 34, 0.78);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.40),
    0 0 38px rgba(227, 16, 34, 0.18);
}

.Industry-blogbox01:hover::after {
  opacity: 1;
}

.Industry-blogbox01:hover .pic img {
  transform: scale(1.06);
  filter: brightness(0.66) contrast(1.18) saturate(1.08);
}

.Industry-blogbox01:hover .content-footer .link {
  color: #000000;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* جلوگیری از تغییر عجیب رنگ متن روی هاور */
.Industry-blogbox01:hover .content-header,
.Industry-blogbox01:hover .content-body .title,
.Industry-blogbox01:hover .content-body .title a,
.Industry-blogbox01:hover .content-body .excerpt,
.Industry-blogbox01:hover .content-header .date,
.Industry-blogbox01:hover .content-header .category,
.Industry-blogbox01:hover .content-header .sep,
.Industry-blogbox01:hover .content-header time {
  color: inherit;
}

.Industry-blogbox01:hover .content-header,
.Industry-blogbox01:hover .content-header .date,
.Industry-blogbox01:hover .content-header .category,
.Industry-blogbox01:hover .content-header .sep,
.Industry-blogbox01:hover .content-header time {
  color: #ff3044;
}

.Industry-blogbox01:hover .content-body .title,
.Industry-blogbox01:hover .content-body .title a {
  color: #ffffff;
}

.Industry-blogbox01:hover .content-body .excerpt {
  color: rgba(255, 255, 255, 0.82);
}

/* نرمی تغییر رنگ‌ها */
.Industry-blogbox01 .content-header,
.Industry-blogbox01 .content-body .title,
.Industry-blogbox01 .content-body .title a,
.Industry-blogbox01 .content-body .excerpt,
.Industry-blogbox01 .content-footer .link,
.Industry-blogbox01 .content-footer .link i,
.Industry-blogbox01 .content-header .date,
.Industry-blogbox01 .content-header .category,
.Industry-blogbox01 .content-header .sep,
.Industry-blogbox01 .content-header time {
  transition:
    color 0.30s ease,
    background 0.30s ease,
    border-color 0.30s ease;
}

/* بدون خبر */
.foruzan-no-articles,
#NoRecords.foruzan-no-articles {
  width: 100%;
  padding: 28px 24px;
  margin: 0;
  border-radius: 18px;
  direction: rtl;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 16, 34, 0.18), transparent 38%),
    linear-gradient(135deg, #000000 0%, #090909 60%, #1b0005 100%);
  border: 1px solid rgba(227, 16, 34, 0.34);
  font-size: 15px;
  font-weight: 800;
  line-height: 2;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 991px) {
  .latest-posts-row {
    gap: 18px;
  }

  .latest-post-col {
    flex: 1 1 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }

  .Industry-blogbox01 {
    min-height: 410px;
  }

  .Industry-blogbox01 .pic {
    height: 185px;
    min-height: 185px;
  }

  .Industry-blogbox01 .content {
    padding: 22px 20px 24px;
  }

  .Industry-blogbox01 .content-body .title {
    font-size: 19px;
  }
}

@media (max-width: 600px) {
  .latest-posts-row {
    display: block;
  }

  .latest-post-col {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 18px;
  }

  .latest-post-col:last-child {
    margin-bottom: 0;
  }

  .Industry-blogbox01 {
    min-height: auto;
    border-radius: 20px;
  }

  .Industry-blogbox01::after {
    border-radius: 20px;
  }

  .Industry-blogbox01 .pic {
    height: 190px;
    min-height: 190px;
    border-radius: 20px 20px 0 0;
  }

  .Industry-blogbox01 .content {
    padding: 22px 18px 24px;
    min-height: auto;
  }

  .Industry-blogbox01 .content-header {
    font-size: 11.5px;
    justify-content: flex-start;
  }

  .Industry-blogbox01 .content-body .title {
    font-size: 20px;
    line-height: 1.65;
  }

  .Industry-blogbox01 .content-body .excerpt {
    font-size: 13.5px;
    line-height: 1.95;
  }

  .Industry-blogbox01 .content-footer {
    padding-top: 18px;
  }

  .Industry-blogbox01 .content-footer .link {
    width: 100%;
  }
}
