/* =============================================
   --- تنسيق الصفحة المنفصلة المطور (Article Page) ---
   تم دمج مدونة الأقمشة مع المقالات العامة
   ============================================= */

.full-article-overlay {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: var(--silver-grad); /* الخلفية الفضية المتدرجة الأساسية */
    z-index: 3000;
    display: none; /* مخفي افتراضياً ويظهر عبر JavaScript */
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(10px); /* تأثير زجاجي للخلفية عند الفتح */
}

.article-container-page {
    background: white;
    border-radius: 35px;
    padding: 30px 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); /* تأثير الطواف القوي */
    border: 2px solid var(--gold); /* الإطار الذهبي الملكي */
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

/* زر العودة المطور */
.back-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(2, 76, 75, 0.3);
}

.back-btn:hover {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.05);
}

/* تنسيق العناوين والصور داخل الصفحة */
.article-page-h1 { 
    color: var(--primary); 
    font-size: 1.8rem; 
    margin-bottom: 20px; 
    text-align: center; 
    font-weight: 900; 
}

.article-page-img { 
    width: 100%; 
    border-radius: 25px; 
    margin-bottom: 25px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    border: 3px solid #fff;
}

.article-page-p { 
    color: #4e342e; 
    line-height: 2; 
    font-size: 1.05rem; 
    text-align: justify; 
    font-weight: 700; 
}

/* --- تنسيق كروت الأقمشة (خاص بالمدونة فقط) --- */
.fabric-item-card {
    background: rgba(255, 255, 255, 0.15); /* شفافية خفيفة لتبدو عائمة */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 131, 28, 0.3);
    border-radius: 25px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fabric-item-card:hover {
    transform: translateY(-5px);
}

/* زر واتساب مباشر للطلب */
.order-now-btn {
    display: block;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}

.order-now-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

/* تنسيق خاص لزر المدونة في الهيدر لتمييزه كشريك */
.header-btn.blog-btn {
    background: var(--gold-grad);
    color: #333;
    font-weight: 900;
}
