/*
Theme Name: My Smart Solutions Store
Theme URI: https://mysmartsolutionsstore.com/
Author: Smart Solutions Team
Description: A professional e-commerce WordPress theme with full Arabic RTL support, WooCommerce integration, and modern design inspired by AliExpress.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mysmartsolutionsstore
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.2
*/

/* ============================================
   My Smart Solutions Store - Main Theme
   ============================================ */

:root {
	--primary-color: #ff4747;
	--secondary-color: #fff;
	--text-dark: #333;
	--text-light: #666;
	--border-color: #eee;
	--bg-light: #f2f2f2;
	--shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: var(--bg-light);
	color: var(--text-dark);
	line-height: 1.6;
	direction: rtl;
	text-align: right;
	margin: 0;
	padding: 0;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #e63939;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
