        .product-card {
            position: relative;
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .order-btn {
            background: #F08D63;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .order-btn:hover {
            background: #FF5252;
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }

        .product-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-category {
            display: inline-block;
            background: #f8f9fa;
            color: #666;
            padding: 3px 12px;
            border-radius: 15px;
            font-size: 12px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .order-icon {
            display: inline-block;
            margin-left: 10px;
            color: #F08D63;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .product-title:hover .order-icon {
            opacity: 1;
            transform: translateX(0);
        }

        .quick-order {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: #ff6b6b;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .quick-order:hover {
            background: #ff5252;
            transform: scale(1.1);
        }

        .section-title {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: #333;
        }

        @media (max-width: 768px) {
            .product-image {
                height: 340px;
            }

            .order-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 991.98px) {
            .product-image {
                height: 150px;
            }

            .product-title {
                font-size: 12px;
            }


            .product-category {
                padding: 5px;
            }
        }

        @media (max-width: 767.98px) {
            .product-image {
                height: 200px;
            }
        }

        @media (max-width: 575.98px) {
            .product-image {
                height: 350px;
            }
        }