        /* ==================== GLOBAL RESET & BASE ==================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-color: #42aac7;
            --primary-dark: #2d8da5;
            --secondary-color: #f8b400;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Cairo', sans-serif;
            direction: rtl;
            text-align: right;
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        /* ==================== TOP BAR ==================== */
        .top-bar-announcement { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); padding: 12px 0; font-size: 14px; }
        .tb-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
        .tb-social { display: flex; gap: 12px; }
        .tb-social a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 50%; transition: var(--transition); }
        .tb-social a:hover { background: var(--white); color: var(--primary-color); transform: translateY(-2px); }

        /* ==================== HEADER ==================== */
        .main-header { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 999; padding: 15px 0; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
        .logo-area img { height: 60px; width: auto; }
        .nav-menu ul { display: flex; gap: 35px; align-items: center; }
        .nav-menu a { font-weight: 600; font-size: 16px; color: var(--text-dark); position: relative; padding: 8px 0; }
        .nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }
        .nav-menu a::after { content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; }
        .nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
        
        .header-buttons { display: flex; align-items: center; gap: 15px; }
        .btn-shop-nav { background: var(--primary-color); color: var(--white); padding: 10px 25px; border-radius: var(--radius); font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); }
        .btn-shop-nav:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--text-dark); cursor: pointer; }

        /* ==================== MOBILE MENU ==================== */
        .mobile-menu-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(0,0,0,0.85); z-index: 9999; transition: right 0.4s ease; }
        .mobile-menu-overlay.active { right: 0; }
        .mobile-menu-content { position: absolute; right: 0; top: 0; width: 280px; height: 100%; background: var(--white); padding: 30px; transform: translateX(100%); transition: transform 0.4s ease; }
        .mobile-menu-overlay.active .mobile-menu-content { transform: translateX(0); }
        .close-menu { position: absolute; top: 20px; left: 20px; background: none; border: none; font-size: 36px; cursor: pointer; }
        .mobile-links { margin-top: 60px; }
        .mobile-links li { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .mobile-links a { font-size: 18px; font-weight: 600; display: block; }

        /* ==================== HERO SECTION ==================== */
        .page-hero { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
        .hero-overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(42,170,199,0.85), rgba(45,141,165,0.9)); }
        .hero-text-centered { position: relative; z-index: 2; text-align: center; color: var(--white); }
        .sub-heading-hero { background: rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 20px; font-size: 14px; margin-bottom: 15px; display: inline-block; }
        .hero-text-centered h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
        .hero-text-centered p { font-size: 18px; max-width: 700px; margin: 0 auto 20px; }
        .hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; }

        /* ==================== GENERAL LAYOUT ==================== */
        .section-padding { padding: 80px 0; }
        .bg-light { background: var(--bg-light); }
        .section-header-center { text-align: center; max-width: 700px; margin: 0 auto 50px; }
        .sm-title { color: var(--primary-color); font-weight: 700; font-size: 14px; display: block; margin-bottom: 10px; }
        .section-header-center h2, .section-title-left h2 { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; }
        .row-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .line-accent { width: 60px; height: 4px; background: var(--secondary-color); margin-bottom: 25px; }

        /* ==================== FEATURES HIGHLIGHT ==================== */
        .features-highlight-main { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
        .specs-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 40px; }
        .spec-feature-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 2px solid transparent; }
        .spec-feature-card:hover { transform: translateY(-8px); border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
        .sfc-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 28px; border-radius: 50%; margin: 0 auto 20px; }
        .spec-feature-card h3 { font-size: 18px; margin-bottom: 10px; }
        .spec-feature-card p { font-size: 14px; color: var(--text-gray); }

        /* ==================== BANNERS ==================== */
        .promo-banner-full { position: relative; height: 350px; margin: 60px 0; overflow: hidden; }
        .banner-image-wrapper { width: 100%; height: 100%; position: relative; }
        .banner-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .banner-overlay-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; text-align: center; color: var(--white); width: 80%; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .banner-overlay-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
        .banner-overlay-text p { font-size: 20px; font-weight: 600; color: var(--secondary-color); background: rgba(0,0,0,0.6); padding: 5px 15px; display: inline-block; border-radius: 20px; }

        /* ==================== OUR STORY ==================== */
        .story-content-detailed p { margin-bottom: 15px; color: var(--text-gray); }
        .quality-badges-row { display: flex; gap: 15px; margin: 25px 0; flex-wrap: wrap; }
        .qb-item { display: flex; align-items: center; gap: 8px; background: var(--bg-light); padding: 10px 20px; border-radius: 25px; font-weight: 600; font-size: 14px; }
        .qb-item i { color: var(--secondary-color); }
        .tech-specs-box { background: var(--primary-dark); padding: 25px; border-radius: var(--radius); margin-top: 25px; color: var(--white); }
        .tech-list li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 15px; }
        .tech-list i { color: var(--secondary-color); }
        .image-wrapper-styled-new { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 500px; }
        .image-wrapper-styled-new img { width: 100%; height: 100%; object-fit: cover; }

        /* ==================== DETAILED SPECS ==================== */
        .specifications-detailed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .spec-detail-card { background: var(--white); padding: 35px 25px; border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; border: 2px solid transparent; transition: var(--transition); }
        .spec-detail-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
        .spec-detail-card.featured-spec { border-color: var(--secondary-color); background: #fffdf5; }
        .featured-badge { position: absolute; top: -10px; left: 20px; background: var(--secondary-color); color: var(--white); padding: 5px 15px; border-radius: 15px; font-size: 12px; font-weight: bold; }
        .sdc-number { font-size: 40px; font-weight: 800; color: rgba(66, 170, 199, 0.1); position: absolute; top: 20px; left: 20px; }
        .sdc-icon { font-size: 32px; color: var(--primary-color); margin-bottom: 20px; }
        .detail-list li { position: relative; padding-right: 20px; margin-bottom: 8px; font-size: 14px; color: var(--text-gray); }
        .detail-list li::before { content: '✓'; position: absolute; right: 0; color: var(--primary-color); font-weight: bold; }

        /* ==================== SHIPPING INFO ==================== */
        .shipping-info-box { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
        .sib-header { background: var(--primary-color); color: var(--white); padding: 25px; text-align: center; }
        .sib-header h2 { font-size: 24px; }
        .sib-content { padding: 30px; }
        .sib-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
        .sib-icon { width: 40px; height: 40px; background: var(--bg-light); color: var(--primary-color); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 18px; flex-shrink: 0; }

        /* ==================== COMPANY INFO ==================== */
        .company-info-detailed { background: var(--white); }
        .company-info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid #eee; overflow: hidden; }
        .cic-header { background: #333; color: var(--white); padding: 30px; text-align: center; }
        .cic-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
        .cic-item { padding: 30px; border-bottom: 1px solid #eee; border-left: 1px solid #eee; display: flex; gap: 20px; align-items: center; }
        .cic-item i { font-size: 30px; color: var(--primary-color); }
        .cic-details h4 { font-size: 14px; color: #999; margin-bottom: 5px; }
        .cic-details p { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 0; }
        .cic-details a { color: var(--primary-color); }

        /* ==================== PRICING NOTE ==================== */
        .pricing-note-section { padding: 30px 0; background: #fff9e6; }
        .pricing-note-box { display: flex; gap: 20px; align-items: center; max-width: 900px; margin: 0 auto; }
        .pricing-note-box i { font-size: 30px; color: var(--secondary-color); }

        /* ==================== FEATURES REPEAT ==================== */
        .features-repeat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .fr-card { background: var(--white); padding: 40px; text-align: center; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition); }
        .fr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .fr-icon-large { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; }
        .fr-badge { background: var(--secondary-color); color: var(--white); padding: 5px 15px; border-radius: 15px; display: inline-block; font-size: 12px; margin-top: 15px; }

        /* ==================== CTA ==================== */
        .cta-final { position: relative; padding: 100px 0; background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover; }
        .cta-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(42,170,199,0.9), rgba(45,141,165,0.9)); }
        .cta-box-centered { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 700px; margin: 0 auto; }
        .cta-features-list { display: flex; justify-content: center; gap: 20px; margin: 30px 0; flex-wrap: wrap; }
        .cta-feature-item { background: rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 20px; font-size: 14px; }
        .cta-btns-group { display: flex; gap: 20px; justify-content: center; }
        .btn-primary-lg { background: var(--white); color: var(--primary-color); padding: 15px 40px; border-radius: var(--radius); font-weight: 700; }
        .btn-outline-lg { border: 2px solid var(--white); color: var(--white); padding: 15px 40px; border-radius: var(--radius); font-weight: 700; }
        .btn-outline-lg:hover { background: var(--white); color: var(--primary-color); }

        /* ==================== FOOTER ==================== */
        .site-footer { background: #1a1a1a; color: #b3b3b3; padding: 60px 0 20px; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #333; }
        .footer-logo { height: 50px; margin-bottom: 15px; }
        .footer-widget h4 { color: var(--white); font-size: 18px; margin-bottom: 20px; font-weight: 700; }
        .links-widget ul li, .contact-widget ul li { margin-bottom: 12px; font-size: 14px; }
        .links-widget a:hover, .contact-widget a:hover { color: var(--primary-color); }
        .contact-widget i { color: var(--primary-color); width: 20px; }
        .footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; flex-wrap: wrap; gap: 15px; }
        .payment-icons { display: flex; gap: 10px; font-size: 24px; color: #666; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 992px) {
            .nav-menu, .btn-shop-nav { display: none; }
            .mobile-toggle { display: block; }
            .specs-features-grid, .specifications-detailed-grid, .features-repeat-grid, .cic-grid, .row-grid-2, .footer-top { grid-template-columns: 1fr; gap: 30px; }
            .hero-text-centered h1 { font-size: 32px; }
            .image-wrapper-styled-new { height: 300px; }
        }