   /* إضافة هامش على يمين ويسار الصفحة */
        body {
            background-color: #fff;
            font-family: 'Cairo', sans-serif;
            margin: 0;
            padding: 0 20px;
        }
        .section_title{
            padding-top: 80px; /* إضافة مسافة للمحتوى تحت الهيدر */
        }
        /*.section_title h3 {*/
        /*        font-weight: bold;*/
        /*        color: #4caf50;*/
        /*        border-bottom: 3px solid #4caf50;*/
        /*}*/
        .product-grid-sec {
            margin-top: -10px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .product-section {
            flex: 0 0 calc(25% - 10px);
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-align: center;
            overflow: hidden;
            position: relative;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
        }

        .product-section img {
            object-fit: contain;
            width: 100%;
            height: 180px; /* تم تكبير الصورة هنا */
            border-bottom: 1px solid #ddd;
        }
        
        .product-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            text-align: center;
        }
        
        .product-info p {
            margin: 5px 0;
            max-width: 100%;
            font-size: 0.9rem;
            font-weight: bold;
            color: #4caf50;
            
        }

        .product-section .add-to-cart {
            width: 40px;
            height: 40px;
            padding: 8px;
            background-color: #28a745;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 50%;
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* إخفاء المنتجات التي تتعدى العدد المعروض */
        .hidden {
            display: none;
        }

        /* Responsive product-card sizes */
        @media (max-width: 1024px) {
            .product-section {
                flex: 0 0 calc(33.333% - 10px);
            }
        }

        @media (max-width: 768px) {
            .product-section {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 460px) {
            .product-section {
                flex: 0 0 calc(50% - 10px);
            }
        }