/* ===== Unified CSS Fixes - ملف الإصلاحات الموحد ===== */
/* Version: 1.0.0 */
/* Release Date: October 17, 2025 */
/* تم دمج: fixes.css + color-fixes.css + final-fix.css */
/* تم تحسينه لتقليل استخدام !important وإزالة التكرار */
/* آخر تحديث: أكتوبر 2025 */

/* ملاحظة: هذا الملف يجمع جميع الإصلاحات في مكان واحد للصيانة الأسهل */
/* تم تنظيمه في أقسام منطقية مع تعليقات واضحة */

/* ==================== SECTION 1: Header & Navigation ==================== */

/* Fix Header Layout */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo i {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

/* Fix Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-hover);
}

/* Fix Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    margin: 0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--bg-hover);
    color: var(--primary-color);
}

/* Fix Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--shadow-colored);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    padding: 0.25rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 200px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.search-box button:hover {
    color: var(--primary-color);
}

/* Fix Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: var(--bg-hover);
    transform: scale(1.1);
}

.cart-icon i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--error-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Fix Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--bg-hover);
    color: var(--primary-color);
}

/* ==================== SECTION 2: Hero, Deals & CTA Sections ==================== */

/* Hero Section */
.hero,
.hero-slide,
.hero-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1,
.hero h2,
.hero h3,
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-slide h1,
.hero-slide h2,
.hero-slide h3 {
    color: white !important;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero p,
.hero-content p,
.hero-slide p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.hero .btn,
.hero-content .btn,
.hero-slide .btn {
    color: white !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid white !important;
    font-weight: 600 !important;
}

.hero .btn:hover,
.hero-content .btn:hover,
.hero-slide .btn:hover {
    background: white !important;
    color: var(--primary-color) !important;
}

/* Deals Section */
.deals,
.deals-section,
.deal-timer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.deals *,
.deals-section *,
.deal-timer * {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.deals h2,
.deals-section h2,
.deal-timer h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.deals p,
.deals-section p,
.deal-timer p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.timer-label {
    color: white !important;
    font-weight: 600 !important;
}

.countdown .time-unit,
.timer .time-unit {
    color: white !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.countdown .time-label,
.timer .time-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* CTA Section */
.cta,
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.cta *,
.cta-section * {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.cta h2,
.cta-section h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.cta p,
.cta-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* ==================== SECTION 3: Cards & Components ==================== */

/* Fix Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--primary-color);
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6,
.card-title {
    color: var(--text-primary) !important;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card p,
.card-text {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-card h3,
.product-card h4,
.product-title {
    color: var(--text-primary) !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card p,
.product-description {
    color: var(--text-secondary) !important;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-price,
.current-price {
    color: var(--accent-color) !important;
    font-size: 1.25rem;
    font-weight: 700 !important;
}

.old-price {
    color: var(--text-muted) !important;
    text-decoration: line-through !important;
    font-size: 1rem;
}

.discount,
.discount-percent {
    background: var(--error-color) !important;
    color: white !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Category Cards */
.category-card h3,
.category-title {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.category-card p,
.category-description {
    color: var(--text-secondary) !important;
}

/* Deal Cards */
.deal-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-primary) !important;
}

.deal-card h3,
.deal-card .deal-title {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.deal-card p,
.deal-card .deal-description {
    color: var(--text-secondary) !important;
}

.deal-card .price,
.deal-card .deal-price {
    color: var(--accent-color) !important;
    font-weight: 700 !important;
}

.deal-card .old-price {
    color: var(--text-muted) !important;
}

/* Feature Cards */
.feature-card h4 {
    color: var(--text-primary) !important;
}

.feature-card p {
    color: var(--text-secondary) !important;
}

/* ==================== SECTION 4: Buttons & Theme Toggle ==================== */

/* Fix Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600 !important;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.btn-secondary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-secondary:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Navbar Theme Toggle Button */
.navbar-theme-toggle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border: none !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    margin-left: 1rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.navbar-theme-toggle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.navbar-theme-toggle:active {
    transform: scale(0.95) !important;
}

.navbar-theme-toggle .icon {
    position: absolute !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar-theme-toggle .sun-icon {
    opacity: 0 !important;
    transform: rotate(180deg) scale(0.5) !important;
}

.navbar-theme-toggle .moon-icon {
    opacity: 1 !important;
    transform: rotate(0deg) scale(1) !important;
}

/* ==================== SECTION 5: Footer ==================== */

.footer {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-primary) !important;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer-section h3 {
    color: var(--text-primary) !important;
    font-size: 1.2rem;
    font-weight: 600 !important;
    margin-bottom: 1rem;
}

.footer p,
.footer span,
.footer div,
.footer-section p {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease !important;
}

.footer a,
.footer-section a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}

.footer a:hover,
.footer-section a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    text-align: center !important;
    padding-top: 2rem !important;
    border-top: 1px solid var(--border-primary) !important;
}

.footer-bottom p {
    color: var(--text-muted) !important;
    margin: 0 !important;
}

/* Social Media Icons */
.social-media a,
.social-links a {
    color: var(--text-secondary) !important;
    font-size: 1.2rem !important;
    margin: 0 0.5rem !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.social-media a:hover,
.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
}

/* Contact Info */
.contact-info p {
    color: var(--text-secondary) !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
}

.contact-info i {
    color: var(--primary-color) !important;
    margin-left: 0.5rem !important;
    width: 20px !important;
}

/* ==================== SECTION 6: Form Elements ==================== */

input,
textarea,
select {
    background: var(--bg-tertiary) !important;
    border: 1px solid var(--border-primary) !important;
    color: var(--text-primary) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted) !important;
}

label {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

/* ==================== SECTION 7: Utility Classes ==================== */

/* Section Titles */
.section-title,
.section h2,
.section h3 {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.section p {
    color: var(--text-secondary) !important;
}

/* Stats */
.stats .stat-number,
.stat-number {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.stats .stat-label,
.stat-label {
    color: var(--text-secondary) !important;
}

/* Breadcrumb */
.breadcrumb a {
    color: var(--text-secondary) !important;
}

.breadcrumb a:hover {
    color: var(--primary-color) !important;
}

.breadcrumb .current {
    color: var(--text-primary) !important;
}

/* Lists */
ul li,
ol li {
    color: var(--text-secondary) !important;
}

/* Tables */
table {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

th {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

td {
    color: var(--text-secondary) !important;
}

/* Modals */
.modal {
    background: var(--bg-modal) !important;
    color: var(--text-primary) !important;
}

.modal h1,
.modal h2,
.modal h3,
.modal h4,
.modal h5,
.modal h6 {
    color: var(--text-primary) !important;
}

.modal p {
    color: var(--text-secondary) !important;
}

/* Alerts */
.alert {
    border: 1px solid var(--border-primary) !important;
}

.alert-success {
    background: var(--success-color) !important;
    color: white !important;
}

.alert-error {
    background: var(--error-color) !important;
    color: white !important;
}

.alert-warning {
    background: var(--warning-color) !important;
    color: var(--text-inverse) !important;
}

.alert-info {
    background: var(--info-color) !important;
    color: white !important;
}

/* Badges */
.badge {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-secondary) !important;
}

.badge-success {
    background: var(--success-color) !important;
    color: white !important;
}

.badge-error {
    background: var(--error-color) !important;
    color: white !important;
}

.badge-warning {
    background: var(--warning-color) !important;
    color: var(--text-inverse) !important;
}

/* ==================== SECTION 8: Dark Mode Support ==================== */

[data-theme="dark"] .header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-primary);
}

[data-theme="dark"] .search-box {
    background: var(--bg-tertiary);
    border-color: var(--border-primary);
}

[data-theme="dark"] .search-box input {
    color: var(--text-primary);
}

[data-theme="dark"] .search-box input::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .dropdown-content {
    background: var(--bg-modal);
    border-color: var(--border-primary);
}

[data-theme="dark"] .nav-menu {
    background: var(--bg-modal);
    border-color: var(--border-primary);
}

[data-theme="dark"] .navbar-theme-toggle {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%) !important;
    box-shadow: 0 2px 10px rgba(46, 213, 115, 0.2) !important;
}

[data-theme="dark"] .navbar-theme-toggle:hover {
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4) !important;
}

[data-theme="dark"] .navbar-theme-toggle .sun-icon {
    opacity: 1 !important;
    transform: rotate(0deg) scale(1) !important;
}

[data-theme="dark"] .navbar-theme-toggle .moon-icon {
    opacity: 0 !important;
    transform: rotate(-180deg) scale(0.5) !important;
}

/* Dark Mode - Hero, Deals, CTA تبقى بيضاء */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero h2,
[data-theme="dark"] .hero h3,
[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .hero-content h2,
[data-theme="dark"] .hero-content h3 {
    color: white !important;
}

[data-theme="dark"] .hero p,
[data-theme="dark"] .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .deals h2,
[data-theme="dark"] .deals-section h2 {
    color: white !important;
}

[data-theme="dark"] .deals p,
[data-theme="dark"] .deals-section p {
    color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .timer-label {
    color: white !important;
}

[data-theme="dark"] .countdown .time-unit {
    color: white !important;
}

[data-theme="dark"] .countdown .time-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary) !important;
}

[data-theme="dark"] .footer h1,
[data-theme="dark"] .footer h2,
[data-theme="dark"] .footer h3,
[data-theme="dark"] .footer h4,
[data-theme="dark"] .footer h5,
[data-theme="dark"] .footer h6 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer span,
[data-theme="dark"] .footer div {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .footer a {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .footer a:hover {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .footer-bottom p {
    color: var(--text-muted) !important;
}

/* ==================== SECTION 9: Responsive Design ==================== */

@media (max-width: 1024px) {
    .header-content {
        gap: 1rem;
    }
    
    .nav-menu ul {
        gap: 1rem;
    }
    
    .search-box input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 25px var(--shadow-medium);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .search-box {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .card {
        padding: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
}

/* ==================== SECTION 10: Performance & Accessibility ==================== */

/* Fix Animation Performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card,
.product-card,
.btn,
.nav-menu a {
    will-change: transform;
}

/* Fix Accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease !important;
}

/* ==================== SECTION 11: Print Styles ==================== */

@media print {
    .header,
    .footer,
    .scroll-to-top,
    .navbar-theme-toggle,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    .hero h1,
    .hero h2,
    .hero h3,
    .hero p {
        color: black !important;
        text-shadow: none !important;
    }
    
    .deals,
    .cta {
        background: none !important;
        color: black !important;
    }
    
    .card,
    .product-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}

/* ==================== END OF FILE ==================== */
/* تم دمج جميع الإصلاحات بنجاح ✓ */
