/* ==========================================
   الستايلات العامة والهيرو سيكشن
========================================== */
.page-header {
    position: relative;
    height: 350px;
    width: 100%;
    /* تم نقل background-image و direction للـ HTML */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-header::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.7);
}

.page-header-content { 
    position: relative; 
    z-index: 2; 
    padding-top: 70px; 
}

/* ==========================================
   القسم الأساسي (Software Section)
========================================== */
.software-section {
    position: relative;
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
    min-height: 600px;
}

/* ==========================================
   المحتوى الضبابي (Blurred Wrapper)
========================================== */
.blurred-content {
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    transition: all 0.3s ease;
}

/* ==========================================
   بانر وتراكب "قريباً" (Coming Soon)
========================================== */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start; /* بانر في الأعلى */
    justify-content: center;
    padding-top: 80px; /* بادينج من الأعلى */
    z-index: 999;
}

.coming-soon-banner {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 650px;
    width: 90%;
    border: 2px solid var(--primary-color, #0d6efd);
    backdrop-filter: blur(10px);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.coming-soon-text {
    line-height: 1.8; 
    font-size: 1.1rem;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-color, #0d6efd);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================
   السايد بار الوهمي (Dummy Sidebar)
========================================== */
.dummy-sidebar { 
    background: #fff; 
    padding: 20px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    margin-bottom: 25px; 
}

.dummy-filter-title { 
    font-weight: bold; 
    margin-bottom: 15px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #f1f1f1; 
}

/* ==========================================
   كروت المنتجات الوهمية (Dummy Product Cards)
========================================== */
.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    background: #e9ecef; 
}

.product-body { 
    padding: 20px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.product-cat { 
    font-size: 0.75rem; 
    color: var(--primary-color, #0d6efd); 
    background: rgba(13, 110, 253, 0.1); 
    padding: 4px 10px; 
    border-radius: 20px; 
    align-self: flex-start; 
    margin-bottom: 10px; 
    font-weight: bold; 
}

.product-title { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: #333; 
}

.product-desc { 
    font-size: 0.85rem; 
    color: #777; 
    margin-bottom: 15px; 
}

.product-footer { 
    border-top: 1px solid #eee; 
    padding-top: 15px; 
    margin-top: auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.product-price { 
    font-weight: 800; 
    font-size: 1.1rem; 
    color: #333; 
}

.dummy-btn { 
    background: #f8f9fa; 
    color: #666; 
    border: 1px solid #ddd; 
    padding: 6px 15px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
}