
    :root {
        --primary-color: #F1302B;
        --text-color: #222222;
        --bg-light: #f9f9f9;
        --border-color: #e5e5e5;
        --transition: all 0.35s ease;
    }

    .product-container { max-width: 1200px; margin: 0 auto; padding: 20px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; direction: rtl; text-align: right; }
    
    /* العناوين */
    h2.section-title { font-size: 26px; color: var(--text-color); text-align: center; margin: 50px 0 30px; text-transform: uppercase; letter-spacing: 1.5px; position: relative; }
    h2.section-title::after { content: ''; width: 50px; height: 3px; background-color: var(--primary-color); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

    /* القسم الرئيسي */
    .hero-section { display: flex; flex-direction: column; gap: 30px; margin-bottom: 50px; }
    .hero-img { width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.6s ease; }
    .hero-img:hover { transform: scale(1.02); }
    .hero-text { background-color: var(--bg-light); padding: 30px; border-radius: 8px; border-right: 6px solid var(--primary-color); border-left: none; }
    
    /* الجدول */
    .table-responsive { border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; margin-bottom: 50px; }
    table { width: 100%; border-collapse: collapse; text-align: right; }
    th { background-color: #111; color: white; padding: 16px; font-size: 14px; }
    td { padding: 15px; border-bottom: 1px solid var(--border-color); font-size: 14px; }
    tr:nth-child(even) { background-color: #fafafa; }
    tr:hover { background-color: #fdf0f0; transition: var(--transition); }

    /* ميزات المنتج */
    .features-grid { display: grid; gap: 20px; margin-bottom: 50px; }
    .feature-item { background: #fff; border: 1px solid var(--border-color); padding: 25px; border-radius: 8px; transition: var(--transition); }
    .feature-item:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
    .feature-item strong { color: var(--primary-color); display: block; margin-bottom: 10px; font-size: 16px; }

    /* المكونات */
    .components-list { display: grid; gap: 25px; }
    .component-card { border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; transition: var(--transition); }
    .component-card img { width: 100%; border-radius: 4px; margin-bottom: 15px; }
    .component-card:hover { border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

    @media (min-width: 768px) {
        .hero-section { flex-direction: row; align-items: center; }
        .hero-img { width: 50%; }
        .hero-text { width: 50%; }
        .features-grid { grid-template-columns: repeat(2, 1fr); }
        .components-list { grid-template-columns: repeat(3, 1fr); }
    }
