/* 
Theme Name: Hello Child
Theme URI: https://t.me/Toptech_ir
Description: 
Author: پیمان ثریا
Author URI: https://t.me/Toptech_ir
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

 

/* توضیحات محصول - استایل حرفه‌ای و سازگار با کدهای موجود */
.pym-product-desc {
  /* متغیرهای CSS برای مدیریت آسان رنگ‌ها */
  --pym-primary: #36BACC;
  --pym-secondary: #2E3238;
  --pym-muted: #717C91;
  --pym-accent: #2BA3B8;
  --pym-border: #DDE4E8;
  --pym-background: #F8F9FA;
  --pym-white: #FFFFFF;
  
  /* تنظیمات پایه - بدون border، سایه و padding */
  font-family: inherit;
  direction: rtl;
  text-align: right;
  background: transparent;
  color: var(--pym-secondary);
  overflow: hidden;
  position: relative;
}

/* هدر محصول */
.pym-product-desc .pym-desc-header {
  margin-bottom: 24px;
}

.pym-product-desc .pym-desc-header h1 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
  font-weight: 700;
  color: var(--pym-secondary);
}

.pym-product-desc .pym-subtitle {
  margin: 0 0 16px 0;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--pym-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* بدنه توضیحات */
.pym-product-desc .pym-desc-body {
  position: relative;
}

/* متن اصلی توضیحات */
.pym-product-desc .pym-lead {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.8;
  margin: 0 0 24px 0;
  font-weight: 500;
  color: var(--pym-secondary);
}

/* لیست ویژگی‌ها - حالت ساده بدون کارت */
.pym-product-desc .pym-features {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* هر آیتم ویژگی - بدون border و سایه */
.pym-product-desc .pym-features li {
  position: relative;
  padding: 8px 25px 8px 40px; /* فاصله بیشتر برای آیکون */
  background: transparent;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 500;
  color: var(--pym-secondary);
  transition: all 0.3s ease;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* آیکون ویژگی - مربع آبی چرخان */
.pym-product-desc .pym-features li::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 12px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--pym-primary) 0%, var(--pym-accent) 100%);
  border-radius: 4px;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

/* هایلایت‌ها */
.pym-product-desc .pym-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 20px 0;
}

.pym-product-desc .pym-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: rgba(54, 186, 204, 0.08);
  color: var(--pym-primary);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 186, 204, 0.15);
}

/* بخش یادداشت نهایی */
.pym-product-desc .pym-note {
  margin: 16px 0 0 0;
  padding: 16px 20px;
  background: var(--pym-white);
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--pym-border);
  position: relative;
}

/* افکت‌های هاور - هماهنگ با رنگ آبی */
.pym-product-desc .pym-features li:hover {
  color: var(--pym-primary);
}

.pym-product-desc .pym-features li:hover::before {
  transform: rotate(45deg) scale(1.2);
  box-shadow: 0 0 8px rgba(54, 186, 204, 0.3);
}

.pym-product-desc .pym-badge:hover {
  background: rgba(54, 186, 204, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(54, 186, 204, 0.2);
}

/* تنظیمات ریسپانسیو */
@media (min-width: 768px) {
  .pym-product-desc .pym-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
  
  .pym-product-desc .pym-highlights {
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .pym-product-desc .pym-features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* تنظیمات موبایل */
@media (max-width: 767px) {
  .pym-product-desc .pym-desc-header h1 {
    font-size: 24px;
  }
  
  .pym-product-desc .pym-features li {
    padding: 6px 25px 6px 32px !important; /* padding-right ثابت نگه داشته شد */
    font-size: 14px;
  }
  
  .pym-product-desc .pym-features li::before {
    width: 14px;
    height: 14px;
    top: 10px;
    right: 2px; /* موقعیت آیکون در موبایل هم ثابت */
  }
  
  .pym-product-desc .pym-badge {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .pym-product-desc .pym-note {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* تنظیمات موبایل بسیار کوچک */
@media (max-width: 480px) {
  .pym-product-desc .pym-desc-header h1 {
    font-size: 20px;
  }
  
  .pym-product-desc .pym-features {
    gap: 12px;
  }
  
  .pym-product-desc .pym-features li {
    padding: 4px 25px 4px 28px !important; /* padding-right ثابت نگه داشته شد */
  }
  
  .pym-product-desc .pym-features li::before {
    right: 2px; /* موقعیت آیکون ثابت */
  }
  
  .pym-product-desc .pym-highlights {
    gap: 8px;
  }
  
  .pym-product-desc .pym-note {
    padding: 12px 14px;
  }
}








.cod-images {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}
.cod-images img {
  max-width: 48%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cod-images img {
    max-width: 100%;
  }
}
