.elementor-1946 .elementor-element.elementor-element-637e149{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4fc9a74 *//* ============================================
   استایل حرفه‌ای برای مقاله سفارش طراحی پاورپوینت
   مخصوص سایت پاورپوینت کار (pptkar.ir)
   طراحی شده توسط تیم حرفه‌ای - کد اختصاصی
============================================ */

/* بارگذاری فونت Vazir از CDN معتبر */
@font-face {
    font-family: 'Vazir';
    src: url('https://cdn.fontcdn.ir/Fonts/Vazir/Vazir.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* متغیرهای طراحی حرفه‌ای */
:root {
    /* پالت رنگی اصلی برند پاورپوینت کار */
    --pptkar-orange: #ff7b00;
    --pptkar-dark: #1a1a2e;
    --pptkar-light: #f8f9fa;
    --pptkar-blue: #4361ee;
    --pptkar-green: #06d6a0;
    
    /* رنگ‌های شیشه‌ای (Glassmorphism) */
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(20px);
    
    /* ابعاد و اندازه‌ها */
    --border-radius-lg: 25px;
    --border-radius-md: 18px;
    --border-radius-sm: 12px;
    
    /* انیمیشن‌های حرفه‌ای */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ریست و استایل پایه */
.pptkar-article-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pptkar-article-container {
    font-family: 'Vazir', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.85;
    color: #2d3748;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    direction: rtl;
    text-align: right;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* افکت پس‌زمینه داینامیک */
.pptkar-article-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 70%, rgba(255, 123, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(67, 97, 238, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 214, 160, 0.04) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* هدر مقاله با تصویر */
.article-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    border-top: 4px solid var(--pptkar-orange);
}

/* خط نارنجی بالای هدر */
.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--pptkar-orange) 0%, 
        var(--pptkar-blue) 50%, 
        var(--pptkar-green) 100%);
    border-radius: 0 0 2px 2px;
}

/* استایل تصویر هدر */
.header-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.header-image {
    flex: 0 0 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.header-image:hover img {
    transform: scale(1.05);
}

.header-content {
    flex: 1;
    min-width: 300px;
}

.article-header h1 {
    font-size: 2.8rem;
    color: var(--pptkar-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-bottom: 20px;
}

/* خط زیر عنوان اصلی */
.article-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg, var(--pptkar-orange), transparent);
    border-radius: 3px;
    animation: widthPulse 3s infinite alternate;
}

@keyframes widthPulse {
    0% { width: 180px; }
    100% { width: 250px; }
}

.article-header .intro {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 123, 0, 0.07);
    border-radius: var(--border-radius-md);
    border-right: 5px solid var(--pptkar-orange);
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.1);
}

/* پاراگراف تراز شده */
.article-header .intro p,
.article-content p {
    text-align: justify;
    line-height: 1.9;
    word-spacing: 1px;
    letter-spacing: 0.2px;
    text-align-last: right;
    margin-bottom: 24px;
    font-size: 1.15rem;
    color: #4a5568;
    padding: 0 15px;
    position: relative;
}

/* آیکون معرفی */
.article-header .intro::before {
    content: '🚀';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.8;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-60%) rotate(10deg); }
}

/* استایل‌های تیترها */
.article-content h1 {
    font-size: 2.6rem;
    color: var(--pptkar-dark);
    margin: 60px 0 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, var(--pptkar-orange), var(--pptkar-blue)) 1;
    position: relative;
    animation: slideInRight 0.7s ease-out;
    text-align: right;
}

.article-content h2 {
    font-size: 2.1rem;
    color: var(--pptkar-dark);
    margin: 45px 0 25px;
    padding: 18px 30px;
    background: linear-gradient(90deg, 
        rgba(255, 123, 0, 0.12) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--border-radius-md);
    border-right: 6px solid var(--pptkar-blue);
    position: relative;
    transition: var(--transition-smooth);
    animation: slideInLeft 0.7s ease-out;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.1);
    text-align: right;
}

.article-content h2:hover {
    transform: translateX(-12px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.18);
    background: linear-gradient(90deg, 
        rgba(255, 123, 0, 0.15) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
}

.article-content h3 {
    font-size: 1.7rem;
    color: var(--pptkar-blue);
    margin: 35px 0 18px;
    padding: 15px 25px;
    background: rgba(67, 97, 238, 0.09);
    border-radius: var(--border-radius-sm);
    border-right: 5px solid var(--pptkar-green);
    animation: fadeIn 0.8s ease-out;
    position: relative;
    text-align: right;
}

/* آیکون کنار H3 */
.article-content h3::before {
    content: '▸';
    position: absolute;
    left: 20px;
    color: var(--pptkar-orange);
    font-size: 1.8rem;
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* تگ strong در پاراگراف‌ها */
.article-content p strong {
    color: var(--pptkar-orange);
    font-weight: 800;
    padding: 3px 8px;
    background: rgba(255, 123, 0, 0.12);
    border-radius: 6px;
    border-bottom: 2px solid rgba(255, 123, 0, 0.3);
    transition: var(--transition-smooth);
}

.article-content p strong:hover {
    background: rgba(255, 123, 0, 0.18);
    transform: translateY(-2px);
}

/* لیست‌ها */
.article-content ul, 
.article-content ol {
    margin: 30px 0;
    padding-right: 35px;
}

.article-content li {
    margin-bottom: 16px;
    padding: 18px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: right;
}

/* خط رنگی کنار لیست */
.article-content li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--pptkar-orange), var(--pptkar-blue));
    border-radius: 0 3px 3px 0;
}

.article-content li:hover {
    transform: translateX(-15px);
    box-shadow: var(--glass-shadow);
    background: rgba(255, 255, 255, 0.95);
}

/* باکس ویژه */
.special-box {
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.12) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 2.5px solid rgba(255, 123, 0, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
    animation: floatBox 8s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
    text-align: right;
}

@keyframes floatBox {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
    }
    50% { 
        transform: translateY(-15px) rotate(0.5deg); 
        box-shadow: 0 30px 60px rgba(255, 123, 0, 0.15);
    }
}

.special-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: shimmerEffect 10s infinite linear;
    pointer-events: none;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.special-box h3 {
    color: var(--pptkar-orange);
    border-right: none;
    background: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: right;
}

.special-box h3::before {
    content: '⚡';
    margin-left: 10px;
}

/* جدول زیبا */
.special-box table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: slideInUp 0.9s ease-out;
    text-align: right;
}

.special-box th {
    background: linear-gradient(90deg, var(--pptkar-orange), var(--pptkar-blue));
    color: white;
    padding: 22px;
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.special-box th::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transform: skewX(-15deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.special-box td {
    padding: 20px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    font-size: 1.05rem;
    text-align: right;
}

.special-box tr:hover td {
    background: rgba(255, 123, 0, 0.07);
    transform: translateX(-8px);
}

/* هایلایت متن مهم */
.highlight-text {
    background: linear-gradient(120deg, 
        rgba(255, 209, 102, 0.35) 0%, 
        rgba(255, 209, 102, 0.15) 100%);
    padding: 15px 25px;
    border-radius: var(--border-radius-sm);
    border-right: 4px solid #ffd166;
    margin: 20px 0;
    font-weight: 600;
    color: #b45309;
    text-align: center;
    position: relative;
    animation: pulseBackground 3s infinite alternate;
}

@keyframes pulseBackground {
    0% { background: linear-gradient(120deg, 
        rgba(255, 209, 102, 0.35) 0%, 
        rgba(255, 209, 102, 0.15) 100%); }
    100% { background: linear-gradient(120deg, 
        rgba(255, 209, 102, 0.45) 0%, 
        rgba(255, 209, 102, 0.25) 100%); }
}

.highlight-text::before {
    content: '💎';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* باکس تبلیغات */
.advertisement-box {
    background: linear-gradient(135deg, 
        rgba(76, 201, 240, 0.18) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    border: 2.5px solid rgba(76, 201, 240, 0.35);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    box-shadow: 0 20px 40px rgba(76, 201, 240, 0.12);
}

.advertisement-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(76, 201, 240, 0.2);
}

.advertisement-box::after {
    content: '🔥';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 2.5rem;
    animation: firePulse 2s infinite;
    opacity: 0.8;
}

@keyframes firePulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2) rotate(10deg); 
        opacity: 1;
    }
}

.advertisement-box p {
    font-size: 1.2rem;
    color: #1e40af;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.advertisement-box a {
    color: var(--pptkar-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    position: relative;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 2.5px solid var(--pptkar-blue);
    transition: var(--transition-smooth);
    display: inline-block;
    margin: 0 10px;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);
}

.advertisement-box a:hover {
    background: var(--pptkar-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.35);
    border-color: transparent;
}

/* باکس نکات */
.tip-box {
    background: linear-gradient(135deg, 
        rgba(6, 214, 160, 0.15) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    border: 2.5px solid var(--pptkar-green);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin: 30px 0;
    position: relative;
    padding-right: 90px;
    box-shadow: 0 20px 40px rgba(6, 214, 160, 0.12);
    text-align: right;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 3rem;
    animation: rotateLight 5s infinite linear;
    filter: drop-shadow(0 0 10px rgba(6, 214, 160, 0.5));
}

@keyframes rotateLight {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.tip-box h4 {
    color: var(--pptkar-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(6, 214, 160, 0.3);
    text-align: right;
}

.tip-box ol {
    padding-right: 25px;
}

.tip-box li {
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(6, 214, 160, 0.2);
    transition: var(--transition-smooth);
    text-align: right;
}

.tip-box li:hover {
    background: rgba(6, 214, 160, 0.08);
    transform: translateX(-10px);
}

/* بخش FAQ */
.faq-section {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    margin: 50px 0;
    box-shadow: var(--glass-shadow);
    border: 2px solid var(--glass-border);
    position: relative;
    text-align: right;
}

.faq-section::before {
    content: '❓';
    position: absolute;
    top: -25px;
    right: 50%;
    transform: translateX(50%);
    font-size: 3rem;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--pptkar-blue);
}

.faq-item {
    margin-bottom: 30px;
    padding: 28px;
    background: white;
    border-radius: var(--border-radius-md);
    border-right: 5px solid var(--pptkar-blue);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: right;
}

.faq-item::before {
    content: '❓';
    position: absolute;
    left: 25px;
    top: 28px;
    font-size: 1.8rem;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateX(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-right-color: var(--pptkar-orange);
}

.faq-item:hover::before {
    opacity: 0.8;
    transform: scale(1.2);
}

.faq-item h3 {
    color: var(--pptkar-dark);
    margin: 0 0 18px;
    padding: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    text-align: right;
}

.faq-item p {
    padding: 0;
    margin: 0;
    color: #4a5568;
    line-height: 1.8;
    text-align: justify;
    text-align-last: right;
}

.faq-item a {
    color: var(--pptkar-orange);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px dotted var(--pptkar-orange);
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.faq-item a:hover {
    color: var(--pptkar-blue);
    border-bottom-style: solid;
}

/* باکس نتیجه‌گیری */
.conclusion-box {
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.18) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    border: 4px solid var(--pptkar-orange);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    animation: pulseBorder 4s infinite;
    box-shadow: 0 25px 50px rgba(255, 123, 0, 0.15);
}

@keyframes pulseBorder {
    0%, 100% { 
        border-color: var(--pptkar-orange);
        box-shadow: 0 25px 50px rgba(255, 123, 0, 0.15);
    }
    50% { 
        border-color: var(--pptkar-blue);
        box-shadow: 0 25px 50px rgba(67, 97, 238, 0.2);
    }
}

.conclusion-box::before {
    content: '🏆';
    position: absolute;
    top: -35px;
    right: 50%;
    transform: translateX(50%);
    font-size: 3.5rem;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 123, 0, 0.35);
    border: 4px solid var(--pptkar-orange);
    z-index: 2;
    animation: bounceTrophy 3s infinite;
}

@keyframes bounceTrophy {
    0%, 100% { transform: translateX(50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(50%) translateY(-10px) rotate(10deg); }
}

.conclusion-box h3 {
    color: var(--pptkar-orange);
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 25px;
    font-size: 2.2rem;
    text-align: center;
}

.conclusion-box p {
    text-align: justify;
    text-align-last: right;
}

/* باکس CTA */
.cta-box {
    background: linear-gradient(135deg, 
        rgba(67, 97, 238, 0.12) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 2.5px solid rgba(67, 97, 238, 0.25);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin: 35px 0;
    text-align: right;
}

.cta-box h4 {
    color: var(--pptkar-blue);
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(67, 97, 238, 0.3);
    text-align: right;
}

.cta-box p {
    text-align: justify;
    text-align-last: right;
}

.cta-box ul {
    padding-right: 20px;
}

.cta-box li {
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(67, 97, 238, 0.2);
    transition: var(--transition-smooth);
    text-align: right;
}

.cta-box li:hover {
    background: rgba(67, 97, 238, 0.08);
    transform: translateX(-10px);
}

.cta-box a {
    color: var(--pptkar-blue);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
}

.cta-box a::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.cta-box a:hover::after {
    right: -10px;
    color: var(--pptkar-orange);
}

/* پیام پایانی */
.final-message {
    font-size: 1.4rem;
    color: var(--pptkar-dark);
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.1) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--border-radius-md);
    border: 2px solid rgba(255, 123, 0, 0.3);
    margin-top: 30px;
    position: relative;
    animation: pulseMessage 5s infinite alternate;
}

@keyframes pulseMessage {
    0% { 
        box-shadow: 0 10px 30px rgba(255, 123, 0, 0.1);
        border-color: rgba(255, 123, 0, 0.3);
    }
    100% { 
        box-shadow: 0 10px 40px rgba(255, 123, 0, 0.2);
        border-color: rgba(255, 123, 0, 0.5);
    }
}

/* انیمیشن‌های ورود */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* لینک‌های عمومی */
.article-content a {
    color: var(--pptkar-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    font-weight: 600;
    padding: 0 2px;
}

.article-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--pptkar-orange);
    transition: width 0.3s ease;
}

.article-content a:hover::after {
    width: 100%;
    left: 0;
}

.article-content a:hover {
    color: var(--pptkar-orange);
}

/* رسپانسیو */
@media (max-width: 1200px) {
    .pptkar-article-container {
        padding: 35px 15px;
    }
    
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .header-with-image {
        flex-direction: column;
        text-align: center;
    }
    
    .header-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pptkar-article-container {
        padding: 25px 10px;
    }
    
    .article-header {
        padding: 30px 20px;
    }
    
    .article-header h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .article-header .intro {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .article-content h1 {
        font-size: 1.9rem;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
        padding: 15px 20px;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
        padding: 12px 20px;
    }
    
    .special-box,
    .advertisement-box,
    .tip-box,
    .conclusion-box,
    .faq-section {
        padding: 25px;
        margin: 25px 0;
    }
    
    .special-box h3,
    .conclusion-box h3 {
        font-size: 1.5rem;
    }
    
    .header-image {
        max-width: 100%;
    }
    
    /* پاراگراف‌ها در موبایل */
    .article-header .intro p,
    .article-content p {
        font-size: 1.05rem;
        padding: 0 10px;
        line-height: 1.8;
        word-spacing: normal;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.7rem;
    }
    
    .article-content h1 {
        font-size: 1.6rem;
    }
    
    .article-content h2 {
        font-size: 1.4rem;
        padding: 12px 15px;
    }
    
    .article-content p {
        font-size: 1.05rem;
        padding: 0 5px;
        line-height: 1.75;
    }
    
    .article-content ul,
    .article-content ol {
        padding-right: 25px;
    }
    
    .article-content li {
        padding: 12px 15px;
    }
    
    .special-box table th,
    .special-box table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .conclusion-box::before {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        top: -25px;
    }
}

/* اسکرول نرم */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    .article-content h1,
    .article-content h2,
    .article-content h3 {
        scroll-margin-top: 100px;
    }
}

/* بهینه‌سازی برای پرینت */
@media print {
    .pptkar-article-container {
        padding: 0;
        background: white;
    }
    
    .article-header,
    .special-box,
    .advertisement-box,
    .tip-box,
    .conclusion-box {
        border: 1px solid #ddd;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .article-content a {
        color: #000;
        text-decoration: underline;
    }
    
    .article-content a::after {
        display: none;
    }
    
    .article-header .intro p,
    .article-content p {
        text-align: justify;
        text-align-last: right;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1492ac2 *//* بارگذاری فونت Vazir */
@font-face {
    font-family: 'Vazir';
    src: url('https://pptkar.ir/wp-content/uploads/2025/10/pptkar-Font-Vazir.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #ff7b00;
    --background-color: rgba(255, 123, 0, 0.85);
    --text-color: #000000;
    --hover-color: rgba(255, 255, 255, 0.4);
    --glass-effect: blur(25px);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-border-light: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    --icon-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    --gradient-start: rgba(255, 123, 0, 0.7);
    --gradient-end: rgba(255, 140, 30, 0.55);
    --glass-glow: 0 0 40px rgba(255, 165, 0, 0.2);
    
    /* مقادیر استاندارد دسکتاپ */
    --icon-size: 50px;
    --icon-img-size: 24px;
    --font-size-text: 11px;
    --font-size-button: 13px;
    --font-size-handwritten: 14px;
    --bar-height: 85px;
    --bar-padding: 15px 30px;
    --button-padding: 12px 25px;
    --border-radius-icon: 16px;
    --border-radius-bar: 45px;
    --border-radius-button: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.social-bar {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(
        135deg, 
        rgba(255, 165, 0, 0.1) 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 165, 0, 0.05) 100%
    );
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border: 1.5px solid var(--glass-border);
    border-top: 2px solid var(--glass-border-light);
    border-left: 2px solid var(--glass-border-light);
    box-shadow: 
        var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.25),
        inset -1px 0 0 rgba(0, 0, 0, 0.05),
        var(--glass-glow);
    padding: var(--bar-padding);
    z-index: 999999;
    border-radius: var(--border-radius-bar);
    animation: fadeInUp 0.6s cubic-bezier(0.19, 1, 0.22, 1), glass-pulse 6s infinite alternate;
    max-width: 85%;
    min-width: 550px;
    height: var(--bar-height);
    display: flex;
    align-items: center;
    font-family: 'Vazir', Tahoma, sans-serif;
    direction: rtl;
    overflow: hidden;
    will-change: transform;
    isolation: isolate;
}

/* افکت نور متحرک */
.social-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 165, 0, 0.03) 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 123, 0, 0.04) 60%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: var(--border-radius-bar);
    z-index: -1;
    animation: glass-shimmer 10s infinite linear;
    pointer-events: none;
}

@keyframes glass-shimmer {
    0% {
        background-position: 0% 0%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.7;
    }
    100% {
        background-position: 0% 0%;
        opacity: 0.5;
    }
}

@keyframes glass-pulse {
    0%, 100% {
        box-shadow: 
            var(--glass-shadow),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1),
            inset 1px 0 0 rgba(255, 255, 255, 0.25),
            inset -1px 0 0 rgba(0, 0, 0, 0.05),
            0 0 25px rgba(255, 165, 0, 0.15);
    }
    50% {
        box-shadow: 
            0 18px 40px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.15),
            inset 1px 0 0 rgba(255, 255, 255, 0.35),
            inset -1px 0 0 rgba(0, 0, 0, 0.1),
            0 0 35px rgba(255, 165, 0, 0.25);
    }
}

.social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    gap: 25px;
    position: relative;
    z-index: 2;
    font-family: 'Vazir', Tahoma, sans-serif;
}

.social-icons {
    display: flex;
    gap: 18px;
    flex: 1;
    justify-content: center;
    font-family: 'Vazir', Tahoma, sans-serif;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 4px;
    font-family: 'Vazir', Tahoma, sans-serif;
}

.social-item:hover {
    transform: translateY(-6px);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: var(--border-radius-icon);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        var(--icon-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 165, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15),
        0 0 25px rgba(255, 165, 0, 0.25);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
}

.social-icon img {
    width: var(--icon-img-size);
    height: var(--icon-img-size);
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.social-text {
    font-size: var(--font-size-text);
    color: var(--text-color);
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.6),
        0 1px 3px rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Vazir', Tahoma, sans-serif;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    min-width: 60px;
}

.social-item:hover .social-text {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.4) 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 5px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* دکمه سفارش پاورپوینت */
.order-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none;
    position: relative;
    height: auto;
    min-width: auto;
    cursor: pointer;
    border: none !important;
}

.order-section::before,
.order-section::after {
    display: none !important;
}

.order-text {
    color: var(--text-color);
    font-size: var(--font-size-button);
    font-weight: 700;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.6),
        0 1px 3px rgba(255, 255, 255, 0.3);
    font-family: 'Vazir', Tahoma, sans-serif;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 120px;
}

.order-text:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* دکمه تماس مستقیم */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 22px;
    border-radius: var(--border-radius-button);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 0 20px rgba(255, 165, 0, 0.15);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 45px;
    min-width: 140px;
    font-family: 'Vazir', Tahoma, sans-serif;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 250%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: 0.6s;
    z-index: 1;
}

.contact-section:hover::before {
    left: 150%;
}

.contact-section {
    animation: glow-pulse 2s infinite alternate;
    position: relative;
    overflow: hidden;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(0, 0, 0, 0.08),
            0 0 20px rgba(255, 165, 0, 0.15),
            0 0 10px rgba(255, 200, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(0, 0, 0, 0.08),
            0 0 20px rgba(255, 165, 0, 0.15),
            0 0 25px rgba(255, 220, 50, 0.6),
            0 0 40px rgba(255, 165, 0, 0.4);
    }
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: lightning-shine 3s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes lightning-shine {
    0% {
        left: -60%;
    }
    20% {
        left: 140%;
    }
    100% {
        left: 140%;
    }
}

.contact-text {
    position: relative;
    z-index: 2;
    font-size: calc(var(--font-size-button) - 1px);
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.6),
        0 1px 3px rgba(255, 255, 255, 0.3);
    font-family: 'Vazir', Tahoma, sans-serif;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-section:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    transform: translateY(-3px);
    animation: glow-pulse-hover 1.5s infinite alternate;
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes glow-pulse-hover {
    0% {
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.35),
            inset 0 -1px 0 rgba(0, 0, 0, 0.12),
            0 0 30px rgba(255, 165, 0, 0.2),
            0 0 15px rgba(255, 200, 0, 0.4);
    }
    100% {
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.35),
            inset 0 -1px 0 rgba(0, 0, 0, 0.12),
            0 0 30px rgba(255, 165, 0, 0.2),
            0 0 30px rgba(255, 220, 50, 0.8),
            0 0 50px rgba(255, 165, 0, 0.6);
    }
}

.handwritten-text {
    font-weight: 700;
    font-size: var(--font-size-handwritten);
    color: var(--text-color);
    text-shadow: 
        0 1px 3px rgba(255, 255, 255, 0.7),
        0 2px 5px rgba(255, 255, 255, 0.4);
    position: relative;
    display: inline-block;
    font-family: 'Vazir', Tahoma, sans-serif;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    padding: 6px 15px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-align: center;
    width: 100%;
}

.handwritten-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.8) 20%, 
        rgba(0, 0, 0, 1) 50%, 
        rgba(0, 0, 0, 0.8) 80%, 
        transparent 100%
    );
    animation: shimmer 2.5s infinite ease-in-out;
    border-radius: 2px;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(0.7); 
    }
    50% { 
        opacity: 1; 
        transform: scaleX(1); 
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) translateX(50%); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) translateX(50%); 
    }
}

/* ===== رسپانسیو برای تبلت ===== */
@media (max-width: 1024px) {
    :root {
        --icon-size: 45px;
        --icon-img-size: 22px;
        --font-size-text: 10px;
        --font-size-button: 12px;
        --font-size-handwritten: 13px;
        --bar-height: 80px;
        --bar-padding: 14px 25px;
        --button-padding: 11px 22px;
        --border-radius-bar: 40px;
    }
    
    .social-bar {
        min-width: 500px;
        max-width: 90%;
    }
    
    .social-icons {
        gap: 16px;
    }
    
    .social-text {
        min-width: 55px;
        padding: 3px 10px;
    }
    
    .order-text {
        min-width: 110px;
        padding: 7px 18px;
    }
    
    .contact-section {
        min-width: 130px;
        height: 42px;
        padding: 9px 20px;
    }
    
    .contact-text {
        font-size: calc(var(--font-size-button) - 1px);
    }
}

/* ===== رسپانسیو برای موبایل ===== */
@media (max-width: 768px) {
    :root {
        --icon-size: 40px;
        --icon-img-size: 20px;
        --font-size-text: 9px;
        --font-size-button: 11px;
        --font-size-handwritten: 12px;
        --bar-height: auto;
        --bar-padding: 12px 18px;
        --button-padding: 10px 18px;
        --border-radius-icon: 14px;
        --border-radius-bar: 35px;
        --border-radius-button: 35px;
    }
    
    .social-bar {
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        transform: none;
        border-radius: var(--border-radius-bar);
        padding: var(--bar-padding);
        min-width: auto;
        max-width: 100%;
        min-height: auto;
        flex-direction: column;
        height: auto;
    }
    
    @keyframes fadeInUp {
        from { 
            opacity: 0; 
            transform: translateY(25px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
    
    .social-container { 
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }
    
    /* بخش منو موبایل - سفارش و تماس */
    .mobile-menu-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 12px;
        padding: 0 5px;
    }
    
    .social-icons { 
        gap: 12px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    
    .social-item {
        flex: 0 0 auto;
    }
    
    .social-icon { 
        margin-bottom: 5px;
    }
    
    .social-text { 
        padding: 3px 10px;
        min-width: 50px;
        font-size: 8px;
    }
    
    /* تنظیمات برای متن سفارش در موبایل */
    .order-section { 
        flex: 1;
        min-width: 0;
        height: auto;
    }
    
    .order-text {
        width: 100%;
        padding: 8px 12px;
        font-size: var(--font-size-button);
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* تنظیمات برای دکمه تماس در موبایل */
    .contact-section { 
        flex: 1;
        min-width: 0;
        height: 42px;
        padding: 8px 15px;
    }
    
    .contact-text {
        font-size: var(--font-size-button);
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .handwritten-text {
        padding: 5px 12px;
        font-size: var(--font-size-handwritten);
        width: auto;
    }
}

/* ===== رسپانسیو برای موبایل‌های کوچک ===== */
@media (max-width: 480px) {
    :root {
        --icon-size: 38px;
        --icon-img-size: 18px;
        --font-size-text: 8px;
        --font-size-button: 10px;
        --font-size-handwritten: 11px;
        --bar-padding: 10px 15px;
        --button-padding: 8px 15px;
        --border-radius-icon: 12px;
        --border-radius-bar: 30px;
        --border-radius-button: 30px;
    }
    
    .social-bar {
        padding: var(--bar-padding);
        min-height: auto;
    }
    
    .social-icons {
        gap: 10px;
        row-gap: 6px;
    }
    
    .mobile-menu-section {
        gap: 8px;
    }
    
    .social-text {
        padding: 3px 8px;
        min-width: 45px;
        font-size: 7px;
    }
    
    .contact-section {
        height: 40px;
        padding: 7px 12px;
    }
    
    .order-text {
        padding: 7px 10px;
        font-size: var(--font-size-button);
    }
    
    .contact-text {
        font-size: var(--font-size-button);
    }
    
    .handwritten-text {
        padding: 4px 10px;
        font-size: var(--font-size-handwritten);
    }
}

/* ===== رسپانسیو برای موبایل‌های خیلی کوچک ===== */
@media (max-width: 360px) {
    :root {
        --icon-size: 35px;
        --icon-img-size: 16px;
        --font-size-text: 7px;
        --font-size-button: 9px;
        --font-size-handwritten: 10px;
        --bar-padding: 8px 12px;
        --button-padding: 6px 12px;
    }
    
    .mobile-menu-section {
        flex-direction: column;
        gap: 6px;
    }
    
    .order-section,
    .contact-section {
        width: 100%;
    }
    
    .order-text,
    .contact-text {
        width: 100%;
        padding: 6px 8px;
    }
    
    .social-icons {
        gap: 8px;
        row-gap: 4px;
    }
    
    .social-text {
        min-width: 40px;
        padding: 2px 6px;
    }
}

/* ===== وضعیت اسکرول ===== */
.social-bar.scrolled {
    background: linear-gradient(
        135deg, 
        rgba(255, 165, 0, 0.08) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.06) 70%,
        rgba(255, 165, 0, 0.04) 100%
    );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

/* ===== تضمین نمایش ===== */
.social-bar,
.social-bar * {
    pointer-events: auto !important;
}

.social-bar {
    isolation: isolate;
}

/* ===== بهینه‌سازی نمایش متن در همه حالت‌ها ===== */
.social-text,
.order-text,
.contact-text,
.handwritten-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

/* ===== جلوگیری از فشرده شدن بیش از حد ===== */
@media (max-width: 320px) {
    .social-icons {
        gap: 6px;
    }
    
    .social-item {
        min-width: 40px;
    }
    
    .social-text {
        font-size: 6px;
        padding: 1px 4px;
        min-width: 35px;
    }
}/* End custom CSS */