.elementor-35 .elementor-element.elementor-element-32cdee7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-28f6734 *//* =========================================
   إعدادات الخط والثيم العام
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;600;700;800&display=swap');

:root {
    /* الألوان الأساسية (مستوحاة من الكتالوج) */
    --primary-blue: #0d2e5e;
    --secondary-blue: #174680;
    --gold: #f5b916;
    --gold-light: #ffecb3;
    
    /* ألوان الخلفيات والخطوط */
    --bg-body: #f0f2f5;
    --bg-card: #ffffff;
    --text-main: #1f2a3a;
    --text-muted: #6c7a8a;
    --text-price: #c0392b; /* لون مميز للأسعار */
    
    /* متغيرات التصميم */
    --border-radius-main: 20px;
    --border-radius-inner: 12px;
    --shadow-card: 0 10px 40px rgba(13, 46, 94, 0.08);
    --shadow-card-hover: 0 20px 60px rgba(13, 46, 94, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   إعدادات الصفحة الأساسية
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    padding: 25px;
    margin: 0;
    line-height: 1.6;
}

/* حاوية الصفحة الرئيسية */
.app-container {
    max-width: 1150px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   قسم الهيدر (الرأس والإحصائيات)
   ========================================= */
.header-area {
    background: linear-gradient(145deg, var(--primary-blue), #0a1f40);
    padding: 35px 30px;
    border-radius: var(--border-radius-main);
    margin-bottom: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 46, 94, 0.25);
}

/* تأثير خلفية الهيدر */
.header-area::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 185, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.header-area::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.header-title h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-title h1 i { color: var(--gold); }
.header-title p {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

/* مربع البحث */
.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}
.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(245, 185, 22, 0.2);
    background: rgba(255, 255, 255, 0.25);
}
.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 15px;
    font-family: inherit;
    color: white;
}
.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.search-box i {
    background: var(--gold);
    color: var(--primary-blue);
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 18px;
}

/* مربع الإحصائيات */
.stats-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-item i { color: var(--gold); font-size: 16px; }
.stat-item span { font-weight: 700; font-size: 16px; margin-right: 4px; }

/* =========================================
   بطاقات الأقسام (Category Cards)
   ========================================= */
.category-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(13, 46, 94, 0.04);
    transition: var(--transition-smooth);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

/* رأس البطاقة (اللون الأزرق) */
.card-header {
    background: var(--primary-blue);
    color: white;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.card-header-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    font-weight: 700;
}
.card-header-title i { color: var(--gold); font-size: 26px; }

/* العناوين الفرعية (اللون الذهبي) */
.sub-header {
    background: var(--gold);
    color: var(--primary-blue);
    padding: 10px 25px;
    font-weight: 800;
    font-size: 16px;
    border-bottom: 3px solid #d19c0e;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.sub-header i { font-size: 18px; }

/* =========================================
   الجداول
   ========================================= */
.table-wrap {
    padding: 20px 20px 10px 20px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

/* ترويسة الجدول */
thead th {
    background: #eef2f7;
    color: var(--primary-blue);
    font-weight: 800;
    padding: 14px 18px;
    text-align: center;
    border-radius: var(--border-radius-inner);
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* صفوف الجدول */
tbody td {
    background: #fafbfc;
    padding: 14px 18px;
    text-align: center;
    border-radius: var(--border-radius-inner);
    font-size: 15px;
    transition: background 0.2s ease;
    border: 1px solid transparent;
}

/* تلوين متناوب للصفوف (أكثر راحة للعين) */
tbody tr:nth-child(even) td {
    background: #ffffff;
}

/* تأثير التمرير على الصف */
tbody tr:hover td {
    background: #fff8e6; /* ذهبي فاتح جداً */
    border-color: #f5dcb1;
}

/* تنسيق الأعمدة */
.product-name {
    font-weight: 700;
    text-align: right;
}
.size-col {
    font-weight: 600;
    color: var(--text-muted);
}
.price-col {
    font-weight: 800;
    color: var(--text-price);
    font-size: 17px;
}

/* =========================================
   أزرار واتساب (أسفل كل قسم)
   ========================================= */
.card-actions {
    padding: 10px 25px 25px 25px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f0f0f0;
    margin-top: 5px;
}

.btn-whatsapp-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-whatsapp-section:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: white;
}
.btn-whatsapp-section:active {
    transform: scale(0.95);
}
.btn-whatsapp-section i { font-size: 22px; }

/* =========================================
   الأزرار العائمة (Floating Buttons)
   ========================================= */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.floating-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    color: white;
    background: #128C7E;
}

.scroll-top-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(13, 46, 94, 0.3);
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}
.scroll-top-btn:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

/* =========================================
   التجاوب مع شاشات الموبايل (Responsive)
   ========================================= */
@media (max-width: 992px) {
    .header-content { flex-direction: column; }
    .search-box { max-width: 100%; }
}

@media (max-width: 768px) {
    body { padding: 15px; }
    
    .header-area { padding: 25px 20px; }
    .header-title h1 { font-size: 24px; }
    .header-title p { font-size: 14px; }
    
    .card-header { flex-direction: column; align-items: flex-start; padding: 15px 20px; }
    .card-header-title { font-size: 19px; }
    
    .card-actions { justify-content: stretch; padding: 15px 20px; }
    .btn-whatsapp-section { 
        width: 100%; 
        justify-content: center; 
        padding: 14px;
    }
    
    table { font-size: 13px; }
    thead th, tbody td { padding: 10px 8px; border-radius: 8px; }
    .price-col { font-size: 15px; }
    
    .floating-btn { width: 55px; height: 55px; font-size: 26px; bottom: 20px; right: 20px; }
    .scroll-top-btn { bottom: 90px; right: 20px; width: 45px; height: 45px; }
}/* End custom CSS */