:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --white: #ffffff;
    --gray: #f4f4f4;
    --text: #333;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; background-color: var(--white); direction: rtl; line-height: 1.6; }


/* Navbar الموحد */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); sticky: top; z-index: 1000; }
.logo { font-size: 1.6rem; font-weight: bold; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-controls { display: flex; align-items: center; gap: 20px; }
.cart-icon-wrapper { position: relative; cursor: pointer; font-size: 1.4rem; color: var(--primary); }
#cart-count { position: absolute; top: -8px; right: -10px; background: #e74c3c; color: white; font-size: 0.7rem; padding: 2px 6px; border-radius: 50%; }
.menu-toggle { font-size: 1.5rem; cursor: pointer; color: var(--primary); }


/* Side Menu */
.side-menu { position: fixed; top: 0; right: -280px; width: 280px; height: 100%; background: var(--primary); z-index: 1001; transition: 0.4s; padding-top: 60px; }
.side-menu.active { right: 0; }
.close-btn { position: absolute; top: 20px; left: 20px; font-size: 2.2rem; color: white; cursor: pointer; }
.menu-links { list-style: none; padding: 20px; }
.menu-links li { margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.menu-links a { text-decoration: none; color: white; display: block; }


/* About Hero */
.about-hero { background: var(--primary); color: white; text-align: center; padding: 80px 20px; }
.about-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.about-hero p { font-size: 1.1rem; opacity: 0.9; }


/* Main Content */
.about-container { max-width: 1100px; margin: 60px auto; padding: 0 20px; }


.about-section { display: flex; align-items: center; gap: 40px; margin-bottom: 80px; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { color: var(--primary); margin-bottom: 20px; font-size: 2rem; }
.about-text p { color: #555; font-size: 1.1rem; }
.about-image { flex: 1; min-width: 300px; }
.about-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }


/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-card { padding: 40px; background: var(--gray); border-radius: 12px; }
.stat-number { display: block; font-size: 2.5rem; font-weight: bold; color: var(--accent); }
.stat-label { color: var(--primary); font-weight: 600; }


@media (max-width: 768px) {
    .about-section { flex-direction: column; text-align: center; }
}