        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background: #f4f4f4;
        }

        header {
            background: linear-gradient(90deg, #8B0000, #B22222);
            color: #fff;
            padding: 30px;
            text-align: center;
            position: relative;

        }


        header h1 {
            margin: 0;
            font-size: 32px;
        }

        header p {
            margin-top: 10px;
            font-size: 18px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 30px;
        }

        h2 {
            color: #8B0000;
            margin-bottom: 15px;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .product {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 15px;
            text-align: center;
            transition: 0.3s;
        }

        .product:hover {
            transform: translateY(-5px);
        }

        .product img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
        }

        .price {
            color: #B22222;
            font-weight: bold;
        }

        .whatsapp-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 15px;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
        }

        .section {
            background: #fff;
            margin-top: 40px;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .section p {
            font-size: 17px;
            line-height: 1.8;
        }

        .features ul {
            list-style: none;
            padding: 0;
        }

        .features li {
            padding: 8px 0;
            font-size: 17px;
        }

        footer {
            background: #222;
            color: #fff;
            text-align: center;
            padding: 15px;
            margin-top: 40px;
        }

        .lang-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #fff;
            color: #8B0000;
            border: none;
            padding: 8px 14px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
        }

        .product-card {
            background: #fff;
            border-radius: 14px;
            padding: 20px;
            text-align: center;
            transition: 0.4s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* الصورة */
        .product-card img {
            width: 100%;
            max-height: 180px;
            object-fit: contain;
            transition: 0.4s ease;
        }

        .product-card:hover img {
            transform: scale(1.08);
        }

        /* زر الطلب */
        .whatsapp-btn {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 18px;
            background: #25D366;
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s ease;
        }

        .product-card:hover .whatsapp-btn {
            background: #1ebe5d;
            transform: scale(1.05);
        }

        .cart-icon {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #fff;
            border-radius: 50%;
            padding: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.3s;
            z-index: 999;
        }

        .cart-icon img {
            width: 30px;
            height: 30px;
        }

        .cart-icon:hover {
            transform: scale(1.1);
            background: #f5f5f5;
        }

        .cart-count {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #B22222;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 50%;
        }

        .cart-page {
            position: fixed;
            top: 0;
            right: 0;
            width: 350px;
            height: 100%;
            background: #fff;
            box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
            padding: 20px;
            display: none;
            overflow-y: auto;
            z-index: 1000;
        }

        .cart-item {
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }

        .close-cart {
            background: #999;
            color: #fff;
            padding: 8px 12px;
            border: none;
            margin-top: 10px;
            cursor: pointer;
        }

        #toast {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #25D366;
            color: #fff;
            padding: 12px 20px;
            border-radius: 8px;
            display: none;
            z-index: 2000;
        }
