
        /* Global Styles */
        body {
            font-family: 'Tajawal', sans-serif !important;
            margin: 0;
            padding: 0;
            background-color: #F8FAFC; /* Light minimal background */
            color: #1E293B;
            direction: rtl;
        }

        /* Prevent Horizontal Scroll */
        html, body {
            overflow-x: hidden !important;
        }

        /* Hero Section */
        .shop-hero {
            position: relative;
            background: linear-gradient(135deg, #89A1C2 0%, #E2E8F0 100%);
            padding: 100px 20px;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .shop-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('https://yellowgreen-lark-895094.hostingersite.com/wp-content/uploads/2026/05/Best-Aqua-.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
            pointer-events: none;
        }

        .shop-hero-content {
            position: relative;
            z-index: 1;
        }

        .shop-hero h1 {
            font-size: 3.5rem;
            color: #0F172A;
            margin: 0 0 15px 0;
            font-weight: 800;
        }
        .shop-hero p {
            font-size: 1.25rem;
            color: #334155;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Container */
        .shop-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        /* Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
        }

        /* Product Card */
        .product-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            padding: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(13, 71, 173, 0.12);
            border-color: rgba(15, 171, 244, 0.4);
        }

        /* Card Image */
        .product-image-wrapper {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 12px;
            overflow: hidden;
            background-color: #F1F5F9;
            margin-bottom: 12px;
            position: relative;
        }
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .product-card:hover .product-image {
            transform: scale(1.06);
        }

        /* Tags */
        .product-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(90deg, #C10001, #900000);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }

        .product-tag.new {
            background: linear-gradient(90deg, #0FABF4, #0D47AD);
        }

        /* Card Content */
        .product-title {
            font-size: 1.25rem;
            font-weight: 800;
            margin: 0 0 6px 0;
            color: #0D47AD;
            transition: color 0.3s ease;
        }
        .product-card:hover .product-title {
            color: #0FABF4;
        }

        .product-category {
            font-size: 0.85rem;
            color: #64748B;
            margin: 0 0 12px 0;
        }
        .product-price-row {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            margin-top: 8px !important;
            margin-bottom: 8px !important;
            width: 100% !important;
        }

        /* High Specificity Pricing Overrides */
        html body .product-card .product-price-row,
        html body .product-card .price,
        html body .product-card .price .amount,
        html body .product-card .price .amount bdi,
        html body .product-card .price ins,
        html body .product-card .price ins .amount,
        html body .product-card .price ins .amount bdi,
        html body .product-card .product-price,
        html body .product-card .product-price .amount,
        html body .product-card .product-price .amount bdi {
            font-size: 2.3rem !important;
            font-weight: 900 !important;
            color: #C10001 !important; /* Huge Bold Crimson Price */
            font-family: 'Tajawal', sans-serif !important;
            display: inline-block !important;
        }

        html body .product-card .price del,
        html body .product-card .price del .amount,
        html body .product-card .price del .amount bdi {
            font-size: 1.15rem !important;
            color: #94A3B8 !important;
            text-decoration: line-through !important;
            margin-left: 8px !important;
            font-weight: 500 !important;
        }

        html body .product-card .price .woocommerce-Price-currencySymbol,
        html body .product-card .price .amount bdi .woocommerce-Price-currencySymbol {
            font-size: 1.15rem !important;
            color: #475569 !important;
            font-weight: 700 !important;
            margin-right: 4px !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .shop-hero {
                padding: 60px 20px;
            }
            .shop-hero h1 {
                font-size: 2.5rem;
            }
            .product-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .shop-container {
                padding: 40px 20px;
            }
        }

        /* Premium Specs List */
        /* Premium Specs List - Compacted */
        .ba-product-specs {
            list-style: none !important;
            padding: 0 !important;
            margin: 10px 0 !important;
            text-align: right !important;
            border-top: 1px solid #E2E8F0;
            padding-top: 8px !important;
        }
        .ba-product-specs li {
            font-size: 0.82rem !important;
            color: #334155 !important;
            margin-bottom: 5px !important;
            display: flex !important;
            align-items: center !important;
            gap: 6px !important;
            font-family: 'Tajawal', sans-serif !important;
        }
        .ba-product-specs li i {
            color: #10B981 !important;
            font-size: 0.85rem !important;
        }

        /* Trust Badges - Compacted */
        .ba-product-trust {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 6px !important;
            margin: 10px 0 !important;
            padding-bottom: 8px !important;
            border-bottom: 1px solid #E2E8F0;
        }
        .ba-product-trust span {
            display: inline-flex !important;
            align-items: center !important;
            gap: 4px !important;
            padding: 4px 8px !important;
            border-radius: 20px !important;
            font-size: 0.76rem !important;
            font-weight: 700 !important;
            font-family: 'Tajawal', sans-serif !important;
        }
        .ba-trust-free {
            background-color: #ECFDF5 !important;
            color: #059669 !important;
        }
        .ba-trust-warranty {
            background-color: #EFF6FF !important;
            color: #2563EB !important;
        }
        .ba-trust-original {
            background-color: #FFFBEB !important;
            color: #D97706 !important;
        }

        /* Suitability Badges - Compacted */
        .ba-suitability {
            margin-top: 8px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 5px !important;
            text-align: right !important;
        }
        .ba-suitability-title {
            font-size: 0.78rem !important;
            color: #64748B !important;
            font-weight: 700 !important;
            font-family: 'Tajawal', sans-serif !important;
        }
        .ba-suitability-badges {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 4px !important;
        }
        .ba-suitability-badge {
            background: #F1F5F9 !important;
            color: #334155 !important;
            padding: 3px 8px !important;
            border-radius: 4px !important;
            font-size: 0.76rem !important;
            font-weight: 600 !important;
            border: 1px solid #E2E8F0 !important;
            font-family: 'Tajawal', sans-serif !important;
        }

        /* Premium WooCommerce Add to Cart Button Style */
        html body .product-card .add_to_cart_button,
        html body .product-card .button,
        html body .product-card .product-cta-row .button,
        html body .product-card .product-cta-row a.button {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            padding: 14px 20px !important;
            border-radius: 12px !important;
            background: #1574C2 !important; /* Premium brand blue */
            color: white !important;
            font-size: 1.2rem !important;
            font-weight: 800 !important;
            text-decoration: none !important;
            border: none !important;
            cursor: pointer !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            font-family: 'Tajawal', sans-serif !important;
            box-shadow: 0 4px 10px rgba(21, 116, 194, 0.2) !important;
            text-align: center !important;
            margin-top: 10px !important;
        }

        html body .product-card .add_to_cart_button:hover,
        html body .product-card .button:hover,
        html body .product-card .product-cta-row .button:hover,
        html body .product-card .product-cta-row a.button:hover {
            background: #0FABF4 !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 20px rgba(15, 171, 244, 0.4) !important;
            color: white !important;
        }

        /* Loading Spinner and checkmarks for AJAX Cart */
        .product-card .add_to_cart_button.loading::after {
            content: "" !important;
            display: inline-block !important;
            width: 16px !important;
            height: 16px !important;
            margin-right: 8px !important;
            border: 2px solid white !important;
            border-top: 2px solid transparent !important;
            border-radius: 50% !important;
            animation: spin 0.8s linear infinite !important;
        }
        
        .product-card .added_to_cart {
            display: block !important;
            text-align: center !important;
            margin-top: 8px !important;
            color: #10B981 !important;
            font-weight: 700 !important;
            font-size: 0.9rem !important;
            font-family: 'Tajawal', sans-serif !important;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

    