        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2E86AB;
            --secondary-color: #A8DADC;
            --accent-color: #F24236;
            --success-color: #27AE60;
            --text-color: #2D3748;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --gray-light: #EDF2F7;
            --border-color: #E2E8F0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* الهيدر */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 12px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 20px;
        }

        .nav-icons a {
            color: var(--text-color);
            font-size: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* القسم الرئيسي */
        .hero {
            background: linear-gradient(135deg, rgba(46, 134, 171, 0.9), rgba(168, 218, 220, 0.8)), url('https://images.unsplash.com/photo-1558008258-3256797b43f3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            max-width: 700px;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--white);
            color: var(--primary-color);
            padding: 15px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .cta-button.primary {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* قسم أنظمة التيار الخفيف */
        .systems {
            padding: 100px 5%;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--text-color);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .systems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .system-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .system-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .system-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .system-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--white);
            font-size: 32px;
        }

        .system-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .system-card p {
            color: var(--text-color);
            opacity: 0.8;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .system-features {
            list-style: none;
            text-align: right;
            margin-top: 20px;
        }

        .system-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-color);
            opacity: 0.8;
        }

        .system-features li:last-child {
            border-bottom: none;
        }

        .system-features li::before {
            content: '✓';
            color: var(--success-color);
            font-weight: bold;
            margin-left: 10px;
        }

        /* قسم الخدمات */
        .services {
            padding: 100px 5%;
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* قسم العملاء */
        .clients {
            padding: 80px 5%;
            background: var(--white);
            text-align: center;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 50px auto 0;
            align-items: center;
        }

        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            max-width: 120px;
            margin: 0 auto;
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* الفوتر */
        footer {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 24px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            opacity: 0.8;
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 1200px) {
            .navbar {
                padding: 20px 3%;
            }
            
            .hero-content h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h2 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.125rem;
            }
            
            .systems-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 70vh;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .systems, .services {
                padding: 60px 5%;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* تأثيرات التمرير */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2E86AB;
            --secondary-color: #A8DADC;
            --accent-color: #F24236;
            --success-color: #27AE60;
            --warning-color: #F39C12;
            --text-color: #2D3748;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --gray-light: #EDF2F7;
            --border-color: #E2E8F0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* الهيدر */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 12px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
        }

        .nav-icons a {
            color: var(--text-color);
            font-size: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* مسار التنقل */
        .breadcrumb {
            background: var(--white);
            padding: 20px 5%;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-color);
        }

        .breadcrumb-links a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-links a:hover {
            color: var(--secondary-color);
        }

        .breadcrumb-links .separator {
            color: var(--border-color);
        }

        /* قسم عرض المنتج */
        .product-section {
            padding: 40px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            background: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        /* معرض الصور */
        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .thumbnail {
            width: 100%;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .thumbnail.active {
            border-color: var(--primary-color);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* معلومات المنتج */
        .product-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .product-header {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }

        .product-category {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .product-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .stars {
            color: var(--warning-color);
        }

        .rating-text {
            color: var(--text-color);
            opacity: 0.7;
            font-size: 14px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .current-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .original-price {
            font-size: 1.25rem;
            color: var(--text-color);
            opacity: 0.5;
            text-decoration: line-through;
        }

        .discount-badge {
            background: var(--accent-color);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .product-description {
            color: var(--text-color);
            opacity: 0.8;
            line-height: 1.7;
        }

        /* المواصفات */
        .product-specs {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .specs-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .spec-name {
            color: var(--text-color);
            opacity: 0.7;
        }

        .spec-value {
            color: var(--text-color);
            font-weight: 500;
        }

        /* الخيارات */
        .product-options {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .option-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .option-label {
            font-weight: 600;
            color: var(--text-color);
        }

        .option-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .option-btn {
            padding: 8px 16px;
            border: 2px solid var(--border-color);
            background: var(--white);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .option-btn.active {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: var(--white);
        }

        /* إجراءات المنتج */
        .product-actions {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--gray-light);
            border-radius: 8px;
            padding: 0 12px;
        }

        .quantity-btn {
            background: none;
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
            color: var(--text-color);
            padding: 8px;
        }

        .quantity-input {
            width: 50px;
            text-align: center;
            border: none;
            background: none;
            font-size: 1rem;
            font-weight: 600;
        }

        .add-to-cart {
            flex: 1;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .add-to-cart:hover {
            background: #1B6B93;
            transform: translateY(-2px);
        }

        .buy-now {
            flex: 1;
            background: var(--success-color);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .buy-now:hover {
            background: #219653;
            transform: translateY(-2px);
        }

        /* معلومات إضافية */
        .product-meta {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-color);
            opacity: 0.8;
            font-size: 14px;
        }

        .meta-item i {
            color: var(--primary-color);
        }

        /* الأقسام الإضافية */
        .product-tabs {
            margin-top: 60px;
        }

        .tabs-header {
            display: flex;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }

        .tab-btn {
            padding: 16px 32px;
            background: none;
            border: none;
            font-weight: 600;
            color: var(--text-color);
            opacity: 0.7;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .tab-btn.active {
            opacity: 1;
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .detailed-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .spec-category {
            margin-bottom: 30px;
        }

        .spec-category h4 {
            font-size: 1.125rem;
            margin-bottom: 16px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .spec-list {
            list-style: none;
        }

        .spec-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
        }

        .spec-list li:last-child {
            border-bottom: none;
        }

        /* المنتجات ذات الصلة */
        .related-products {
            margin-top: 80px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .product-card-image {
            width: 100%;
            height: 200px;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-card-content {
            padding: 20px;
        }

        .product-card-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
        }

        .product-card-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .product-card-actions {
            display: flex;
            gap: 10px;
        }

        .card-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
        }

        .card-btn.primary {
            background: var(--primary-color);
            color: var(--white);
        }

        .card-btn.secondary {
            background: var(--gray-light);
            color: var(--text-color);
        }

        /* الفوتر */
        footer {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 80px 5% 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 24px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            opacity: 0.8;
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 1200px) {
            .navbar {
                padding: 20px 3%;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .product-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .product-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .image-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .specs-grid {
                grid-template-columns: 1fr;
            }
            
            .tabs-header {
                flex-direction: column;
            }
            
            .tab-btn {
                text-align: right;
            }
            
            .product-meta {
                flex-direction: column;
                gap: 15px;
            }
        }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2E86AB;
            --secondary-color: #A8DADC;
            --accent-color: #F24236;
            --success-color: #27AE60;
            --warning-color: #F39C12;
            --text-color: #2D3748;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --gray-light: #EDF2F7;
            --border-color: #E2E8F0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* الهيدر */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 12px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
        }

        .nav-icons a {
            color: var(--text-color);
            font-size: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* مسار التنقل */
        .breadcrumb {
            background: var(--white);
            padding: 20px 5%;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-color);
        }

        .breadcrumb-links a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-links a:hover {
            color: var(--secondary-color);
        }

        .breadcrumb-links .separator {
            color: var(--border-color);
        }

        /* قسم العنوان */
        .category-header {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 60px 5%;
            text-align: center;
        }

        .category-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .category-description {
            font-size: 1.125rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* قسم المحتوى الرئيسي */
        .category-content {
            padding: 40px 5%;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }

        /* الشريط الجانبي للتصفية */
        .filter-sidebar {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .filter-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        .filter-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .clear-filters {
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
        }

        .filter-group {
            margin-bottom: 30px;
        }

        .filter-group-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-color);
            display: flex;
            justify-content: between;
            align-items: center;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-color);
        }

        .filter-option label {
            cursor: pointer;
            font-size: 14px;
            color: var(--text-color);
        }

        .price-range {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .price-inputs {
            display: flex;
            gap: 10px;
        }

        .price-input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 14px;
        }

        .apply-price {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .apply-price:hover {
            background: #1B6B93;
        }

        /* شريط أدوات المنتجات */
        .products-toolbar {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .products-count {
            font-weight: 500;
            color: var(--text-color);
        }

        .sort-options {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sort-label {
            font-size: 14px;
            color: var(--text-color);
        }

        .sort-select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background: var(--white);
            font-size: 14px;
            cursor: pointer;
        }

        .view-options {
            display: flex;
            gap: 10px;
        }

        .view-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-btn.active {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        /* شبكة المنتجات */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent-color);
            color: var(--white);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .product-badge.new {
            background: var(--success-color);
        }

        .product-badge.discount {
            background: var(--accent-color);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .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-actions {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .product-card:hover .product-actions {
            bottom: 0;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 50%;
            background: var(--primary-color);
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: #1B6B93;
            transform: scale(1.1);
        }

        .action-btn.wishlist {
            background: var(--accent-color);
        }

        .product-content {
            padding: 20px;
        }

        .product-category {
            color: var(--primary-color);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .product-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
            line-height: 1.4;
        }

        .product-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .product-title a:hover {
            color: var(--primary-color);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .stars {
            color: var(--warning-color);
            font-size: 14px;
        }

        .rating-count {
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.7;
        }

        .product-description {
            font-size: 14px;
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 16px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .current-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .original-price {
            font-size: 1rem;
            color: var(--text-color);
            opacity: 0.5;
            text-decoration: line-through;
        }

        .product-specs {
            list-style: none;
            margin-bottom: 20px;
        }

        .product-specs li {
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.7;
            padding: 4px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .product-specs li:last-child {
            border-bottom: none;
        }

        .product-specs li::before {
            content: '•';
            color: var(--primary-color);
            margin-left: 8px;
        }

        .product-card-actions {
            display: flex;
            gap: 10px;
        }

        .card-btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
        }

        .card-btn.primary {
            background: var(--primary-color);
            color: var(--white);
        }

        .card-btn.primary:hover {
            background: #1B6B93;
        }

        .card-btn.secondary {
            background: var(--gray-light);
            color: var(--text-color);
        }

        .card-btn.secondary:hover {
            background: var(--border-color);
        }

        /* الترقيم */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
        }

        .pagination-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background: var(--white);
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .pagination-btn.active {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .pagination-btn:hover:not(.active) {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        /* الفوتر */
        footer {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 80px 5% 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 24px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            opacity: 0.8;
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 1200px) {
            .navbar {
                padding: 20px 3%;
            }
            
            .category-content {
                grid-template-columns: 250px 1fr;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .category-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .filter-sidebar {
                position: static;
            }
            
            .products-toolbar {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .category-header {
                padding: 40px 5%;
            }
            
            .category-title {
                font-size: 2rem;
            }
            
            .product-card-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .sort-options {
                flex-direction: column;
                align-items: stretch;
            }
        }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2E86AB;
            --secondary-color: #A8DADC;
            --accent-color: #F24236;
            --success-color: #27AE60;
            --warning-color: #F39C12;
            --text-color: #2D3748;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --gray-light: #EDF2F7;
            --border-color: #E2E8F0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* الهيدر */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 12px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
        }

        .nav-icons a {
            color: var(--text-color);
            font-size: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* مسار التنقل */
        .breadcrumb {
            background: var(--white);
            padding: 20px 5%;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-color);
        }

        .breadcrumb-links a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-links a:hover {
            color: var(--secondary-color);
        }

        .breadcrumb-links .separator {
            color: var(--border-color);
        }

        /* قسم سلة التسوق */
        .cart-section {
            padding: 40px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cart-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .cart-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .cart-subtitle {
            font-size: 1.125rem;
            color: var(--text-color);
            opacity: 0.8;
        }

        .cart-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
        }

        /* جدول سلة التسوق */
        .cart-items {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .cart-table {
            width: 100%;
            border-collapse: collapse;
        }

        .cart-table-header {
            border-bottom: 2px solid var(--border-color);
        }

        .cart-table-header th {
            padding: 16px;
            text-align: right;
            font-weight: 600;
            color: var(--text-color);
        }

        .cart-item {
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s ease;
        }

        .cart-item:hover {
            background-color: var(--gray-light);
        }

        .cart-item td {
            padding: 20px 16px;
            vertical-align: top;
        }

        .product-info {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .product-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            background: var(--gray-light);
            flex-shrink: 0;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-details {
            flex: 1;
        }

        .product-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
        }

        .product-name a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .product-name a:hover {
            color: var(--primary-color);
        }

        .product-sku {
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.6;
            margin-bottom: 4px;
        }

        .product-category {
            font-size: 12px;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
        }

        .quantity-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--border-color);
            background: var(--white);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 8px;
            font-weight: 600;
        }

        .price {
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
        }

        .original-price {
            font-size: 14px;
            color: var(--text-color);
            opacity: 0.5;
            text-decoration: line-through;
            display: block;
        }

        .item-total {
            font-weight: 700;
            color: var(--text-color);
            text-align: center;
        }

        .remove-btn {
            background: none;
            border: none;
            color: var(--accent-color);
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px;
        }

        .remove-btn:hover {
            transform: scale(1.2);
        }

        /* ملخص الطلب */
        .order-summary {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .summary-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-color);
            padding-bottom: 16px;
            border-bottom: 2px solid var(--border-color);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .summary-label {
            color: var(--text-color);
            opacity: 0.8;
        }

        .summary-value {
            font-weight: 600;
            color: var(--text-color);
        }

        .discount {
            color: var(--success-color);
        }

        .shipping-options {
            margin: 20px 0;
        }

        .shipping-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .shipping-option:last-child {
            border-bottom: none;
        }

        .shipping-option input[type="radio"] {
            accent-color: var(--primary-color);
        }

        .shipping-info {
            flex: 1;
        }

        .shipping-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .shipping-duration {
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.7;
        }

        .shipping-price {
            font-weight: 600;
            color: var(--primary-color);
        }

        .free-shipping {
            color: var(--success-color);
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-top: 2px solid var(--border-color);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .total-price {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .checkout-btn {
            width: 100%;
            background: var(--success-color);
            color: var(--white);
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .checkout-btn:hover {
            background: #219653;
            transform: translateY(-2px);
        }

        .continue-shopping {
            display: block;
            text-align: center;
            color: var(--primary-color);
            text-decoration: none;
            margin-top: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .continue-shopping:hover {
            color: var(--secondary-color);
        }

        /* قسم السلة الفارغة */
        .empty-cart {
            text-align: center;
            padding: 80px 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .empty-cart-icon {
            font-size: 4rem;
            color: var(--border-color);
            margin-bottom: 24px;
        }

        .empty-cart-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-color);
        }

        .empty-cart-message {
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 32px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .shop-now-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-color);
            color: var(--white);
            padding: 15px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .shop-now-btn:hover {
            background: #1B6B93;
            transform: translateY(-2px);
        }

        /* قسم المنتجات المقترحة */
        .suggested-products {
            margin-top: 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-content {
            padding: 20px;
        }

        .product-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
        }

        .product-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .product-card-actions {
            display: flex;
            gap: 10px;
        }

        .card-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
        }

        .card-btn.primary {
            background: var(--primary-color);
            color: var(--white);
        }

        .card-btn.secondary {
            background: var(--gray-light);
            color: var(--text-color);
        }

        /* الفوتر */
        footer {
            background: linear-gradient(135deg, var(--primary-color), #1B6B93);
            color: var(--white);
            padding: 80px 5% 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 24px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            opacity: 0.8;
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 1200px) {
            .navbar {
                padding: 20px 3%;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .cart-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .order-summary {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .cart-table-header {
                display: none;
            }
            
            .cart-item {
                display: block;
                margin-bottom: 20px;
                padding: 20px;
                border: 1px solid var(--border-color);
                border-radius: 8px;
            }
            
            .cart-item td {
                display: block;
                padding: 8px 0;
                text-align: right;
            }
            
            .cart-item td::before {
                content: attr(data-label);
                font-weight: 600;
                float: right;
                margin-left: 10px;
            }
            
            .product-info {
                flex-direction: column;
                text-align: center;
            }
            
            .quantity-controls {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .cart-title {
                font-size: 2rem;
            }
            
            .cart-items, .order-summary {
                padding: 20px;
            }
        }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #6bb1e0;
            --accent-color: #ff6b6b;
            --success-color: #27AE60;
            --warning-color: #F39C12;
            --text-color: #4a5568;
            --light-bg: #f7fafc;
            --white: #FFFFFF;
            --gray-light: #edf2f7;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* اللوجو البسيط */
        .checkout-logo {
            padding: 20px 5%;
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        /* قسم الحجز */
        .booking-section {
            padding: 40px 5%;
            max-width: 1200px;
            margin: 0 auto;
            flex: 1;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .booking-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .booking-subtitle {
            font-size: 1.125rem;
            color: var(--text-color);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .booking-steps {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        .step.active .step-icon {
            background: var(--primary-color);
            color: var(--white);
        }

        .step.completed .step-icon {
            background: var(--success-color);
            color: var(--white);
        }

        .step-text {
            font-size: 14px;
            font-weight: 500;
        }

        .step.active .step-text {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* محتوى الحجز */
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
        }

        /* نموذج الحجز */
        .booking-form {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .form-section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--primary-color);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-color);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-color);
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            background: var(--white);
            cursor: pointer;
        }

        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-color);
        }

        .checkbox-group label {
            cursor: pointer;
        }

        /* خيارات التواصل */
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-method.selected {
            border-color: var(--primary-color);
            background: rgba(74, 111, 165, 0.05);
        }

        .contact-method input[type="radio"] {
            accent-color: var(--primary-color);
        }

        .contact-icon {
            font-size: 24px;
            color: var(--primary-color);
        }

        .contact-info {
            flex: 1;
        }

        .contact-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-description {
            font-size: 14px;
            color: var(--text-color);
            opacity: 0.7;
        }

        /* ملخص الحجز */
        .booking-summary {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .summary-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-color);
            padding-bottom: 16px;
            border-bottom: 2px solid var(--border-color);
        }

        .booking-items {
            margin-bottom: 24px;
        }

        .booking-item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .booking-item:last-child {
            border-bottom: none;
        }

        .item-image {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            background: var(--gray-light);
            flex-shrink: 0;
        }

        .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .item-details {
            flex: 1;
        }

        .item-name {
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .item-price {
            color: var(--primary-color);
            font-weight: 600;
        }

        .item-quantity {
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.7;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .summary-label {
            color: var(--text-color);
            opacity: 0.8;
        }

        .summary-value {
            font-weight: 600;
            color: var(--text-color);
        }

        .discount {
            color: var(--success-color);
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-top: 2px solid var(--border-color);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .total-price {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .info-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: var(--gray-light);
            border-radius: 8px;
            margin-top: 20px;
        }

        .info-icon {
            color: var(--primary-color);
            font-size: 20px;
        }

        .info-text {
            font-size: 14px;
            color: var(--text-color);
        }

        .confirm-booking-btn {
            width: 100%;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .confirm-booking-btn:hover {
            background: #3a5a8a;
            transform: translateY(-2px);
        }

        .whatsapp-btn {
            width: 100%;
            background: #25D366;
            color: var(--white);
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 1200px) {
            .booking-container {
                grid-template-columns: 1fr 350px;
            }
        }

        @media (max-width: 992px) {
            .booking-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .booking-summary {
                position: static;
            }
            
            .booking-steps {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .booking-steps {
                flex-direction: column;
                gap: 15px;
            }
            
            .step {
                flex-direction: row;
                width: 100%;
                justify-content: flex-start;
            }
            
            .booking-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .booking-form, .booking-summary {
                padding: 20px;
            }
            
            .contact-method {
                flex-direction: column;
                text-align: center;
            }
            
            .booking-section {
                padding: 20px 3%;
            }
            
            .language-switcher {
                top: 10px;
                left: 10px;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #6bb1e0;
            --accent-color: #ff6b6b;
            --success-color: #27AE60;
            --warning-color: #F39C12;
            --text-color: #4a5568;
            --light-bg: #f7fafc;
            --white: #FFFFFF;
            --gray-light: #edf2f7;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* اللوجو البسيط */
        .thankyou-logo {
            padding: 20px 5%;
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        /* قسم الشكر */
        .thankyou-section {
            padding: 60px 5%;
            max-width: 800px;
            margin: 0 auto;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thankyou-container {
            background: var(--white);
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: var(--shadow-lg);
            text-align: center;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .thankyou-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--success-color), #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--white);
            font-size: 40px;
            animation: bounce 1s ease-in-out;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

        .thankyou-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .thankyou-subtitle {
            font-size: 1.25rem;
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .booking-number {
            background: var(--gray-light);
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--primary-color);
            display: inline-block;
            margin: 20px 0;
            border: 2px dashed var(--primary-color);
        }

        .thankyou-message {
            font-size: 1.125rem;
            color: var(--text-color);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        /* معلومات الحجز */
        .booking-info {
            background: var(--gray-light);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            text-align: right;
        }

        .info-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .info-label {
            font-weight: 600;
            color: var(--text-color);
            font-size: 14px;
        }

        .info-value {
            color: var(--text-color);
            opacity: 0.8;
        }

        /* الخطوات القادمة */
        .next-steps {
            margin: 40px 0;
        }

        .steps-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .step-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--white);
            font-size: 24px;
        }

        .step-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
        }

        .step-description {
            font-size: 14px;
            color: var(--text-color);
            opacity: 0.7;
        }

        /* أزرار الإجراءات */
        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .action-btn.primary {
            background: var(--primary-color);
            color: var(--white);
        }

        .action-btn.primary:hover {
            background: #3a5a8a;
            transform: translateY(-2px);
        }

        .action-btn.secondary {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .action-btn.secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .action-btn.whatsapp {
            background: #25D366;
            color: var(--white);
        }

        .action-btn.whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* وسائل التواصل */
        .contact-info {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .contact-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--gray-light);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .contact-method:hover .contact-icon {
            color: var(--white);
        }

        .contact-icon {
            color: var(--primary-color);
            font-size: 18px;
        }

        .contact-text {
            font-weight: 500;
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 768px) {
            .thankyou-container {
                padding: 40px 20px;
            }
            
            .thankyou-title {
                font-size: 2rem;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .action-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .steps-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .thankyou-section {
                padding: 40px 3%;
            }
            
            .language-switcher {
                top: 10px;
                left: 10px;
            }
            
            .success-icon {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }
        }
    /* أنماط زر واتساب */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* للشاشات الصغيرة */
@media (max-width: 480px) {
    .whatsapp-button .text { display: none; }
    .whatsapp-button { 
        padding: 14px; 
        width: 60px; 
        height: 60px; 
        justify-content: center; 
    }
}

/* للغة العربية */
body[dir="rtl"] .whatsapp-float {
    left: auto;
    right: 25px;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #6bb1e0;
            --accent-color: #ff6b6b;
            --success-color: #27AE60;
            --text-color: #4a5568;
            --light-bg: #f7fafc;
            --white: #FFFFFF;
            --gray-light: #edf2f7;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        body[dir="ltr"] {
            font-family: 'Inter', 'Tajawal', sans-serif;
        }

        /* اللغة والتبديل */
        .language-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--white);
            border-radius: 25px;
            padding: 8px 12px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* الهيدر */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), #3a5a8a);
            color: var(--white);
            padding: 12px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .logo p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
        }

        .nav-icons a {
            color: var(--text-color);
            font-size: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* قسم المدونة */
        .blog-section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .blog-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .blog-subtitle {
            font-size: 1.25rem;
            color: var(--text-color);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* محتوى المدونة */
        .blog-container {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
        }

        /* مقالات المدونة */
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .blog-post {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .post-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-post:hover .post-image img {
            transform: scale(1.05);
        }

        .post-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .post-content {
            padding: 30px;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--text-color);
            opacity: 0.7;
        }

        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .post-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-color);
            line-height: 1.4;
        }

        .post-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .post-title a:hover {
            color: var(--primary-color);
        }

        .post-excerpt {
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            gap: 12px;
            color: var(--secondary-color);
        }

        /* الشريط الجانبي */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-widget {
            background: var(--white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
        }

        .widget-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-color);
        }

        /* البحث */
        .search-form {
            display: flex;
            gap: 10px;
        }

        .search-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
        }

        .search-button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-button:hover {
            background: var(--secondary-color);
        }

        /* الفئات */
        .categories-list {
            list-style: none;
        }

        .category-item {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .category-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .category-link:hover {
            color: var(--primary-color);
        }

        .category-count {
            background: var(--gray-light);
            color: var(--text-color);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        /* أحدث المقالات */
        .recent-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .recent-post {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .recent-post:last-child {
            border-bottom: none;
        }

        .recent-post-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-content {
            flex: 1;
        }

        .recent-post-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .recent-post-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-title a:hover {
            color: var(--primary-color);
        }

        .recent-post-date {
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.7;
        }

        /* الوسوم */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            background: var(--gray-light);
            color: var(--text-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* الترقيم */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 60px;
        }

        .pagination-btn {
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--white);
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pagination-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .pagination-btn.active {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        /* الفوتر */
        footer {
            background: linear-gradient(135deg, var(--primary-color), #3a5a8a);
            color: var(--white);
            padding: 80px 5% 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 24px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            opacity: 0.8;
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 1200px) {
            .navbar {
                padding: 20px 3%;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .blog-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .blog-sidebar {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .blog-title {
                font-size: 2.5rem;
            }
            
            .post-image {
                height: 250px;
            }
            
            .post-content {
                padding: 20px;
            }
            
            .post-title {
                font-size: 1.25rem;
            }
            
            .sidebar-widget {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .blog-section {
                padding: 60px 3%;
            }
            
            .blog-title {
                font-size: 2rem;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }
    
    .hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background: #1a1a1a;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.4) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #fff;
    color: #007bff;
    border-color: #fff;
}

.cta-button.primary:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}

.cta-button {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-button:hover {
    background: #fff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* أزرار التنقل */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    right: 20px;
}

.slider-nav.next {
    left: 20px;
}

/* النقاط الإرشادية */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
        justify-content: center;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        right: 10px;
    }
    
    .slider-nav.next {
        left: 10px;
    }
}

/* تأثيرات الحركة */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide.active {
    animation: fadeIn 1s ease-in-out;
}





/* قسم المنتجات - تصميم جديد كلياً */
.products {
    padding: 80px 5%;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* تصميم جديد لكروت المنتجات */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-color), #e63946);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(242, 66, 54, 0.3);
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.4;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 68px;
}

/* قسم السعر - ثابت ومميز */
.product-price-section {
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #1B6B93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.5;
    text-decoration: line-through;
    font-weight: 600;
}

/* أزرار الإجراءات - ثابتة ودائمة الظهور */
.product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    position: relative;
    z-index: 3;
    top: -5px;
}

.add-to-cart, .view-details {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--primary-color), #1B6B93);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.add-to-cart:active {
    transform: translateY(0);
}

.view-details {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.1);
}

.view-details:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.3);
}

.view-details:active {
    transform: translateY(0);
}

/* تأثيرات إضافية للكروت */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* حالة عدم وجود منتجات */
.no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1.25rem;
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.no-products::before {
    content: '😔';
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

/* زر عرض جميع المنتجات */
.view-all-products {
    text-align: center;
    margin-top: 60px;
}

.view-all-products .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #1B6B93);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
    border: none;
    cursor: pointer;
}

.view-all-products .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 134, 171, 0.4);
}

/* تحسينات للشاشات المتوسطة */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content h3 {
        font-size: 1.125rem;
        min-height: 50px;
    }
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .products {
        padding: 60px 3%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-content h3 {
        font-size: 1.125rem;
        min-height: auto;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart, .view-details {
        padding: 12px 16px;
    }
    
    .current-price {
        font-size: 1.375rem;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .view-all-products .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* تأثيرات خاصة للكروت */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }



/* قسم آراء العملاء */
.testimonials {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%232E86AB" d="M500,250c138.07,0,250,111.93,250,250s-111.93,250-250,250s-250-111.93-250-250S361.93,250,500,250z"/></svg>');
    background-size: 200px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(46, 134, 171, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    padding: 2px;
}

.client-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.client-details span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* قسم مقارنة المنتجات */
.comparison-section {
    padding: 80px 5%;
    background: var(--white);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), #1B6B93);
}

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    position: relative;
}

.comparison-table th:first-child {
    background: rgba(255, 255, 255, 0.1);
    text-align: right;
}

.comparison-table th:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(46, 134, 171, 0.03);
}

.comparison-table tbody tr:hover {
    background: rgba(46, 134, 171, 0.08);
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border: none;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table td:first-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(46, 134, 171, 0.02);
}

.comparison-table td:not(:first-child) {
    position: relative;
}

.comparison-table td:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.comparison-table td:last-child::after {
    display: none;
}

/* تأثيرات خاصة للأعمدة */
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    border-left: 3px solid #A8DADC;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    border-left: 3px solid var(--primary-color);
}

.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
    border-left: 3px solid #1B6B93;
}

/* أزرار الاختيار */
.plan-select {
    margin-top: 15px;
}

.select-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.select-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* تحسينات للشاشات المتوسطة */
@media (max-width: 992px) {
    .testimonials-slider {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .testimonials, .comparison-section {
        padding: 60px 3%;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table {
        border-radius: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .comparison-table th {
        font-size: 16px;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card::before {
        right: 20px;
        font-size: 60px;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* تأثيرات الرسوم المتحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* شريط التمرير للجدول */
.comparison-table::-webkit-scrollbar {
    height: 8px;
}

.comparison-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: #1B6B93;
}