.elementor-3712 .elementor-element.elementor-element-8a47eed{--spacer-size:25px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cf7b075 *//* تنظیمات کلی برای نسخه دسکتاپ و تبلت */
.katizan-scraper-section {
  padding: 40px;
  background-color: #f5f5f5; /* رنگ پس‌زمینه ملایم */
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.katizan-scraper-container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.katizan-scraper-icon img {
  width: 80px;
  height: auto;
  margin-right: 20px;
}

.katizan-scraper-text {
  flex: 1;
  color: #333333; /* رنگ متن اصلی */
  font-family: "IRANSans", Arial, sans-serif;
}

.katizan-scraper-text h2 {
  font-size: 28px;
  color: #D17A00; /* رنگ برند کاتیزان */
  margin-bottom: 15px;
  font-weight: bold;
}

.katizan-scraper-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.katizan-scraper-text p:last-child {
  margin-bottom: 0;
}

/* تنظیمات برای نسخه موبایل */
@media (max-width: 768px) {
  .katizan-scraper-section {
    padding: 20px; /* کاهش فضای داخلی برای موبایل */
  }

  .katizan-scraper-container {
    flex-direction: column; /* تغییر چیدمان به عمودی در موبایل */
    align-items: center;
    text-align: center; /* متن را به مرکز صفحه بیاوریم */
  }

  .katizan-scraper-icon img {
    width: 50px; /* کاهش اندازه آیکون برای موبایل */
    height: auto;
    margin-bottom: 20px; /* فاصله آیکون از متن */
  }

  .katizan-scraper-text h2 {
    font-size: 22px; /* کاهش اندازه فونت برای موبایل */
    margin-bottom: 15px;
  }

  .katizan-scraper-text p {
    font-size: 14px; /* کاهش اندازه فونت برای موبایل */
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

/* تنظیمات برای نسخه تبلت */
@media (min-width: 769px) and (max-width: 1024px) {
  .katizan-scraper-container {
    flex-direction: row; /* حفظ حالت افقی در تبلت */
  }

  .katizan-scraper-icon img {
    width: 70px; /* اندازه آیکون در تبلت */
  }

  .katizan-scraper-text h2 {
    font-size: 24px; /* اندازه عنوان در تبلت */
  }

  .katizan-scraper-text p {
    font-size: 15px; /* اندازه متن در تبلت */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e4a23c7 */.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}
.product-card {
  width: 220px;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.product-card h3 {
  margin-top: 10px;
  font-size: 16px;
  color: #1B3A5D;
}

.desktop-details-box {
  display: none;
  max-width: 960px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 24px;
}
.desktop-details-box.active {
  display: block;
}
.desktop-details-box .product-title {
  font-size: 20px;
  color: #D17A00;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.desktop-details-box .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.desktop-details-box .gallery img {
  width: 110px;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.desktop-details-box .gallery img:hover {
  transform: scale(1.06);
}
.desktop-details-box ul {
  text-align: right;
  padding-right: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.desktop-details-box ul li {
  margin-bottom: 6px;
}

/* ✅ Lightbox */
#lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
#lightbox-overlay.visible {
  display: flex;
}
#lightbox-image {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
#lightbox-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 90vw;
}
#lightbox-thumbnails img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s ease;
}
#lightbox-thumbnails img:hover,
#lightbox-thumbnails img.active {
  opacity: 1;
  border: 2px solid #fff;
  box-shadow: 0 0 6px #fff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c3af5b8 */body {
  background-color: #FAFAFA;
}

.product-cards-mobile {
  padding: 12px;
}

.product-card-mobile {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-title-mobile {
  font-size: 18px;
  font-weight: bold;
  color: #D17A00;
  margin-bottom: 12px;
  cursor: pointer;
  text-align: center;
}

.main-image-mobile {
  width: 100%;
  max-height: 40vh;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.gallery-thumbnails-mobile {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-thumbnails-mobile::-webkit-scrollbar {
  display: none;
}

.gallery-thumbnails-mobile img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 6px;
  scroll-snap-align: start;
  border: 1px solid #ccc;
  transition: border 0.2s ease;
}

.gallery-thumbnails-mobile img:hover {
  border: 2px solid #D17A00;
}

.product-description-mobile {
  display: none;
  font-size: 15px;
  line-height: 1.9;
  color: #1B3A5D;
  padding-top: 10px;
  text-align: right;
}

.product-description-mobile ul {
  padding-right: 20px;
}

.product-description-mobile li {
  margin-bottom: 6px;
}

.product-description-mobile li::marker {
  color: #D17A00;
}/* End custom CSS */